#include "set.h" using std::vector; using CacheSim::Block; using CacheSim::Set; Set::Set(short waySize, short tagSize){ this->waySize = waySize; for(int i=0; iblocks.push_back(Block(tagSize)); } }