v6502cpp/TransCache.cpp

14 lines
274 B
C++
Raw Normal View History

2013-12-15 19:00:43 +00:00
/*
* File: TransCache.cpp
* Author: Christopher
*
* Created on December 15, 2013, 1:39 PM
*/
#include "TransCache.h"
#include "trans.h"
void TransCache::add(Segment* c1, Segment* gate, Segment* c2) {
this->cache.insert(std::make_shared<Trans>(c1,gate,c2));
}