#ifndef RAMINT_H #define RAMINT_H #include #include struct instruction_t { std::string verb; std::string noun; }; class RamInstruction { private: std::vector code; std::map label; int lineNumber; public: RamInstruction(std::string filename); int getLineNumber(); int getLabelPosition(std::string name); instruction_t getInstruction(int line); }; #endif //RAMINT_H