#ifndef MASTER_HPP #define MASTER_HPP #include "master_content.hpp" #include namespace apps { class strusCms; class master : public cppcms::application { protected: strusCms &cms; public: master( strusCms &cms ); virtual void ini( content::master &c ); }; } #endif