#ifndef NODE_H #define NODE_H #include #include #include "mnemonic.h" using std::string; class Node { public: string getLabel() const; string getComment() const; std::shared_ptr getMnemonic() const; string toString() const; protected: string _label; std::shared_ptr _mnemonic; string _comment; }; #endif // NODE_H