#ifndef CONTENTMANAGER_H #define CONTENTMANAGER_H 1 #include "Content.hpp" #include #include typedef std::unordered_map> ContentModules; class ContentManager { public: ContentManager() {} ~ContentManager() { ShutdownAll(); } bool RegisterModule(std::shared_ptr ctnt); bool InitAll(void); void ShutdownAll(void); bool Render(std::string & basePath); ContentModules const & GetAllModules() const; private: ContentModules m_ContentModules; }; #endif