#ifndef MEMORY_H #define MEMORY_H #include #include struct Value; struct Thread; struct Heap { typedef std::vector Values; Values values; void garbageCollect(Thread* thread); }; #endif // ndef MEMORY_H