summaryrefslogtreecommitdiff
path: root/include/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/engine.h')
-rw-r--r--include/engine.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/engine.h b/include/engine.h
new file mode 100644
index 0000000..2b8af3c
--- /dev/null
+++ b/include/engine.h
@@ -0,0 +1,16 @@
+#ifndef __ENGINE_H__
+#define __ENGINE_H__
+
+#include <IRC.h>
+
+namespace mogltk {
+ class engine : public Base {
+ public:
+ static int setup() throw(GeneralException);
+ static int GetInited();
+ private:
+ static int inited;
+ };
+};
+
+#endif