#ifndef CONTENTMANAGER_H #define CONTENTMANAGER_H 1 #include "Content.hpp" #include "Filesystem.hpp" #include "TemplateManager.hpp" #include #include using ContentModules = std::unordered_map >; class ContentManager { public: ContentManager() { } ~ContentManager() { ShutdownAll(); } void SetStaticFilesystem(std::shared_ptr & static_fs); void SetTemplateSystem(std::shared_ptr & tmgr); bool RegisterModule(std::shared_ptr ctnt); bool InitAll(void); void ShutdownAll(void); bool Render(char const * basePath, RequestResponse & rr, std::string & out); ContentModules const & GetAllModules() const; ContentModules const & GetAllModulesRoutes() const; private: std::shared_ptr m_TemplateManager; ContentModules m_ContentModules; ContentModules m_ContentModulesRoutes; }; #endif