summaryrefslogtreecommitdiff
path: root/src/strusCms.hpp
blob: 9a93e99e7c55fd197e2345a266696af02e2555b3 (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
25
26
27
28
29
#ifndef STRUS_CMS_HPP
#define STRUS_CMS_HPP

#include <cppcms/application.h>  

#include "intro.hpp"
#include "user.hpp"

namespace apps {

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

	public:
		apps::intro intro;
		apps::user user;
		std::string conn;
	
	private:
		std::string script;
		std::string locale_name;

};

}

#endif