#ifndef CODE_H #define CODE_H #include #include #include "node.h" class Code { public: Code() = default; void addLine(const std::shared_ptr& line); const std::vector>& getLines() const; const string toString() const; private: std::vector> _lines; }; #endif // CODE_H