source: cheroxy/trunk/include/CRXProxy.h@ 20

Last change on this file since 20 was 20, checked in by cheese, 11 years ago

#1 fix and arrange exception handling

File size: 426 bytes
Line 
1/**
2 * CRXProxy.h
3 */
4#ifndef __CRXPROXY_H__
5#define __CRXPROXY_H__
6
7#include "CRXException.h"
8
9class CRXSocket;
10
11class CRXProxy : public CRXException
12{
13private:
14 CRXSocket mClient;
15
16public:
17 CRXProxy (const int aSocket = 0);
18
19public:
20 static CRXProxy * GetNewInstance (const int aSocket = 0);
21
22public:
23 int Forward (void);
24 int ForwardMT (void);
25};
26
27#endif // #ifndef __CRXPROXY_H__
Note: See TracBrowser for help on using the repository browser.