#ifndef GUARD_RTGLIB_INSTRUCTION_HPP #define GUARD_RTGLIB_INSTRUCTION_HPP #include #include namespace rtg { struct instruction { unsigned int id; std::string name; shape result; std::vector arguments; }; } #endif