From 35997e9d743721ee0392812d38e29616885a427c Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 13 Dec 2015 15:53:59 +0100 Subject: renamed the project to aCms (avoid confusion) --- src/aCms.hpp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/aCms.hpp (limited to 'src/aCms.hpp') diff --git a/src/aCms.hpp b/src/aCms.hpp new file mode 100644 index 0000000..f50253c --- /dev/null +++ b/src/aCms.hpp @@ -0,0 +1,35 @@ +#ifndef ACMS_HPP +#define ACMS_HPP + +#include + +#include "mail.hpp" +#include "intro.hpp" +#include "user.hpp" +#include "page.hpp" + +namespace apps { + +class aCms : public cppcms::application { + public: + aCms( cppcms::service &srv ); + std::string root( std::string locale_name = "" ); + std::string media_root( std::string locale_name = "" ); + + public: + apps::master master; + apps::intro intro; + apps::user user; + apps::page page; + std::string conn; + mailer mail; + + private: + std::string script; + std::string media; + std::string locale_name; +}; + +} + +#endif -- cgit v1.2.3-54-g00ecf