summaryrefslogtreecommitdiff
path: root/src/master.hpp
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 11:53:48 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 11:53:48 +0200
commitdc080f8fe2697569923ed326f8080cb0baedc46b (patch)
tree84ccd679d3c9de649583bb51c830d069e6419432 /src/master.hpp
parent2b5cb826fae8325661abd54eb6521cade1c80dba (diff)
downloadaCms-dc080f8fe2697569923ed326f8080cb0baedc46b.tar.gz
aCms-dc080f8fe2697569923ed326f8080cb0baedc46b.tar.bz2
some rearrangement
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