Moo
moolibloader.h
1 
2 //-----------------------------------------------------------------------------
3 
4 #ifndef __moolibloader__
5 #define __moolibloader__
6 
7 #include "moo.h"
8 
9 //-----------------------------------------------------------------------------
10 // public loader to load moo
11 // created moos inc
12 //-----------------------------------------------------------------------------
13 
14 //-----------------------------------------------------------------------------
15 // MooLibLoader
16 //-----------------------------------------------------------------------------
17 
18 //-----------------------------------------------------------------------------
21 {
22 public:
23  MooLibLoader ();
24  ~MooLibLoader ();
25 
27  bool open (const mooChar* path);
29  bool close ();
30 
33 
34 protected:
36  void* module;
37 };
38 
39 #endif // yymoo
40 
unsigned short mooChar
Definition: mooplatform.h:35
bool open(const mooChar *path)
open the moo lib, given a local path
Moo * createMooInstance()
create an instance of the Moo base object, from which you can access all other Moo modules ...
bool close()
close the lib
access to the Moo library
Definition: moolibloader.h:20
Definition: moo.h:174
void * module
private module member, ignore
Definition: moolibloader.h:36