summaryrefslogtreecommitdiff
path: root/src/master_content.hpp
blob: 5ea54ee9d4245902bb3470dc508a6490cf78ac54 (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
30
31
32
33
34
35
36
37
38
39
#ifndef MASTER_CONTENT_HPP
#define MASTER_CONTENT_HPP

#include <cppcms/view.h>
#include <cppcms/form.h>  

#include <string>

namespace apps {
	
class strusCms;

}

namespace content {

struct master : public cppcms::base_content {
	std::string title;
	std::string login_link;
	std::string logout_link;
	std::string register_link;
	std::string username;
	std::string printName;
	std::string _root;
	std::string url;

	public:
		master( ) : cppcms::base_content( )
		{
		}
		
		std::string root( ) {
			return _root;
		}
};

}

#endif