summaryrefslogtreecommitdiff
path: root/src/strusCms.hpp
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 13:14:32 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 13:14:32 +0200
commitde50c30a936b87d79f816790230856347b0dff7e (patch)
treead53a7fb53eb125761345e3012d9c89cabce74f4 /src/strusCms.hpp
parentdc080f8fe2697569923ed326f8080cb0baedc46b (diff)
downloadaCms-de50c30a936b87d79f816790230856347b0dff7e.tar.gz
aCms-de50c30a936b87d79f816790230856347b0dff7e.tar.bz2
introduced a sub-app for intro page
Diffstat (limited to 'src/strusCms.hpp')
-rw-r--r--src/strusCms.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/strusCms.hpp b/src/strusCms.hpp
index 5d4af13..db7f0d9 100644
--- a/src/strusCms.hpp
+++ b/src/strusCms.hpp
@@ -3,6 +3,8 @@
#include <cppcms/application.h>
+#include "intro.hpp"
+
namespace apps {
class strusCms : public cppcms::application {
@@ -11,11 +13,10 @@ class strusCms : public cppcms::application {
std::string root( std::string locale_name = "" );
private:
- void intro( );
-
- private:
std::string script;
std::string locale_name;
+
+ apps::intro intro;
};
}