?? tcpsocket.h
字號:
#pragma once
// CTcpSocket command target
class CItem;
class CTcpSocket : public CAsyncSocket
{
public:
CTcpSocket();
virtual ~CTcpSocket();
CItem* m_pParentItem;
int m_iKind; //1: data_main 3: debug_main 2:date_listen 4:debug_listen 5: temp
public:
virtual void OnSend(int nErrorCode);
virtual void OnAccept(int nErrorCode);
virtual void OnReceive(int nErrorCode);
virtual void OnClose(int nErrorCode);
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -