summaryrefslogtreecommitdiff
path: root/src/strusCms.hpp
diff options
context:
space:
mode:
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