summaryrefslogtreecommitdiff
path: root/src/strusCms.hpp
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-12-13 15:53:59 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2015-12-13 15:53:59 +0100
commit35997e9d743721ee0392812d38e29616885a427c (patch)
tree36909a9eedfdbcb7591e7c568fef2a6b2ad4c692 /src/strusCms.hpp
parentebf669cdbf7854f03113a937605658f100aefd48 (diff)
downloadaCms-35997e9d743721ee0392812d38e29616885a427c.tar.gz
aCms-35997e9d743721ee0392812d38e29616885a427c.tar.bz2
renamed the project to aCms (avoid confusion)
Diffstat (limited to 'src/strusCms.hpp')
-rw-r--r--src/strusCms.hpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/strusCms.hpp b/src/strusCms.hpp
deleted file mode 100644
index 83d4c8c..0000000
--- a/src/strusCms.hpp
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef STRUS_CMS_HPP
-#define STRUS_CMS_HPP
-
-#include <cppcms/application.h>
-
-#include "mail.hpp"
-#include "intro.hpp"
-#include "user.hpp"
-#include "page.hpp"
-
-namespace apps {
-
-class strusCms : public cppcms::application {
- public:
- strusCms( 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