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

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

#1 work for CRXProxy and CRXException

File size: 348 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 int Forward (void);
21 int ForwardMT (void);
22};
23
24#endif // #ifndef __CRXPROXY_H__
Note: See TracBrowser for help on using the repository browser.