#ifndef GUARD_RTGLIB_PROGRAM_HPP #define GUARD_RTGLIB_PROGRAM_HPP #include #include #include namespace rtg { struct program { // A deque is used to keep references to an instruction stable std::deque instructions; std::unordered_map ops; }; } #endif