Usermode/AxWin4 - Send mouse/keyboard events to client
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / include / CConfig.hpp
1 /*
2  * Acess2 GUI v4
3  * - By John Hodge (thePowersGang) 
4  *
5  * CConfig.hpp
6  * - Configuration class
7  */
8 #ifndef _CCONFIG_H_
9 #define _CCONFIG_H_
10
11 #include "CConfigInput.hpp"
12 #include "CConfigVideo.hpp"
13 #include "CConfigIPC.hpp"
14
15 namespace AxWin {
16
17 class CConfig
18 {
19 public:
20         CConfig();
21         
22         bool parseCommandline(int argc, char *argv[]);
23         
24         CConfigInput    m_input;
25         CConfigVideo    m_video;
26         CConfigIPC      m_ipc;
27 };
28
29 }
30
31 #endif
32

UCC git Repository :: git.ucc.asn.au