5dc88e2f91158f0adecec285d8bd4f02d04b51d9
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / include / IIPCChannel.hpp
1 /*
2  * Acess2 GUI v4
3  * - By John Hodge (thePowersGang) 
4  *
5  * IIPCChannel.hpp
6  * - IPC Channel interface
7  */
8 #ifndef _IIPCCHANNEL_H_
9 #define _IIPCCHANNEL_H_
10
11 extern "C" {
12 #include <acess/sys.h>
13 }
14
15 namespace AxWin {
16
17 class IIPCChannel
18 {
19 public:
20         virtual ~IIPCChannel();
21         
22         virtual int     FillSelect(::fd_set& rfds) = 0;
23         virtual void    HandleSelect(const ::fd_set& rfds) = 0;
24 };
25
26
27 };
28
29 #endif
30

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