Usermode/AxWin4 - Code now compiling (if STL is present)
[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 namespace AxWin {
12
13 class IIPCChannel
14 {
15 public:
16         virtual ~IIPCChannel();
17         
18         virtual int     FillSelect(::fd_set& rfds) = 0;
19         virtual void    HandleSelect(::fd_set& rfds) = 0;
20 };
21
22
23 };
24
25 #endif
26

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