summaryrefslogtreecommitdiff
path: root/include/engine.h
blob: 2b8af3ca9efeae51a2bc74e27222eb0fcd74e773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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