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