summaryrefslogtreecommitdiff
path: root/src/master.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/master.hpp')
-rw-r--r--src/master.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/master.hpp b/src/master.hpp
new file mode 100644
index 0000000..75f4eb1
--- /dev/null
+++ b/src/master.hpp
@@ -0,0 +1,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