15 lines
288 B
C++
15 lines
288 B
C++
#include "set.h"
|
|
#include <vector>
|
|
using CacheSim::Set;
|
|
using std::vector;
|
|
|
|
namespace CacheSim{
|
|
class Simulator
|
|
{
|
|
private:
|
|
short setSize;
|
|
vector<Set> sets;
|
|
public:
|
|
Simulator(short setSize, short waySize, short tagSize);
|
|
};
|
|
} |