summaryrefslogtreecommitdiff
path: root/src/strusCms.hpp
blob: 5d4af13b04146c412d52b38b7a1375c7a406049f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef STRUS_CMS_HPP
#define STRUS_CMS_HPP

#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