17 lines
251 B
C++
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);
|
|
};
|
|
} |