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

#include <cppcms/application.h>  

#include "intro.hpp"

namespace apps {

class strusCms : public cppcms::application {
	public:
		strusCms( cppcms::service &srv );
		std::string root( std::string locale_name = "" );
		
	private:
		std::string script;
		std::string locale_name;

		apps::intro intro;
};

}

#endif