summaryrefslogtreecommitdiff
path: root/src/master.hpp
blob: 75f4eb14c20a1e9eb066a51540fb398b11110c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MASTER_HPP
#define MASTER_HPP

#include <cppcms/application.h>

namespace apps {

class strusCms;

class master : public cppcms::application {
	protected:
		strusCms &m_cms;
		
	public:
		master( strusCms &cms );
};

}

#endif