#ifndef CONTENT_H #define CONTENT_H #include #include #include "Ptr.h" #include "Action_base.h" #include "Component.h" #include "terminal.h" class Content{ public: void add(Ptr ptr); void add_com(terminal_star85::terminal::Keycodes key, Ptr act); friend class Session; private: std::vector > vec; std::map > com; }; #endif