1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| // QLObj.h: interface for the CQLObj class.
| //
| //////////////////////////////////////////////////////////////////////
| #if _MSC_VER > 1000
| #pragma once
| #endif // _MSC_VER > 1000
|
| // Íê³ÉÒýÓüÇÊý¹¦ÄÜ
| class AFX_EXT_CLASS CQLObj
| {
| public:
| CQLObj();
| virtual ~CQLObj();
|
| // Operations
| public:
| long AddRef();
| long Release();
|
| private:
| long m_nRef;
|
| };
|
| typedef struct _QLPROXYINFO
| {
| BOOL bEnable;
| CString strServer;
| DWORD dwPort;
| CString strLoginName;
| CString strPassword;
|
| DWORD dwProxyType;
|
| _QLPROXYINFO() : bEnable( false ), dwPort( 0 ), dwProxyType( 0 ) {};
| } QLPROXYINFO;
|
|