#ifndef CONTENTMANAGER_H #define CONTENTMANAGER_H 1 #include "Content.hpp" #include class ContentManager { public: ContentManager() {} ~ContentManager() {} bool Register(Content const & ctnt); private: std::map m_ContentModules; }; #endif