// 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;