#pragma once #ifdef CODE_HPP #define CODE_HPP #include class code { private: const std::string mnemonic; public: code(std::string mno) : mnemonic(mno) {} ~code(); std::array dest(); std::array comp(); std::array jump(); }; #endif