summaryrefslogtreecommitdiff
path: root/src/strusCms.hpp
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 11:53:48 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 11:53:48 +0200
commitdc080f8fe2697569923ed326f8080cb0baedc46b (patch)
tree84ccd679d3c9de649583bb51c830d069e6419432 /src/strusCms.hpp
parent2b5cb826fae8325661abd54eb6521cade1c80dba (diff)
downloadaCms-dc080f8fe2697569923ed326f8080cb0baedc46b.tar.gz
aCms-dc080f8fe2697569923ed326f8080cb0baedc46b.tar.bz2
some rearrangement
Diffstat (limited to 'src/strusCms.hpp')
-rw-r--r--src/strusCms.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/strusCms.hpp b/src/strusCms.hpp
index 6c152d0..5d4af13 100644
--- a/src/strusCms.hpp
+++ b/src/strusCms.hpp
@@ -3,12 +3,21 @@
#include <cppcms/application.h>
+namespace apps {
+
class strusCms : public cppcms::application {
public:
strusCms( cppcms::service &srv );
+ std::string root( std::string locale_name = "" );
private:
void intro( );
+
+ private:
+ std::string script;
+ std::string locale_name;
};
+}
+
#endif