summaryrefslogtreecommitdiff
path: root/src/master.hpp
blob: d29073ecffa8d5ce3f74af1f5ee4c476466dc9d8 (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 MASTER_HPP
#define MASTER_HPP

#include "master_content.hpp"

#include <cppcms/application.h>
    
namespace apps {

class strusCms;

class master : public cppcms::application {
	protected:
		strusCms &cms;
		
	public:
		master( strusCms &cms );
		virtual void ini( content::master &c );
};

}

#endif