churf/src/GC/lib/event.cpp
2023-03-08 15:04:12 +01:00

28 lines
No EOL
469 B
C++

#include <chrono>
#include <iostream>
#include <list>
#include "chunk.hpp"
#include "event.hpp"
#include "heap.hpp"
// using namespace std;
namespace GC {
GCEventType GCEvent::getType() {
return m_type;
}
TimeStamp GCEvent::getTimeStamp() {
return m_timestamp;
}
Chunk *GCEvent::getChunk() {
return m_chunk;
}
void GCEvent::print(std::ostream &out) {
assert(false && "TODO: unimplemented");
}
}