CacheSim/set.h
2021-12-31 02:21:58 +08:00

17 lines
251 B
C++

#include "block.h"
#include <vector>
using std::vector;
using CacheSim::Block;
namespace CacheSim{
class Set
{
private:
short waySize;
vector<Block> blocks;
public:
Set(short waySize, short tagSize);
};
}