fast/Plugin/Plc/ClientSocket.h
2025-01-20 10:30:01 +08:00

18 lines
318 B
C++

#pragma once
// CClientSocket command target
class CClientSocket : public CSocket
{
public:
CClientSocket();
virtual ~CClientSocket();
virtual void OnReceive(int nErrorCode);
virtual void OnClose(int nErrorCode);
public:
//CDialog* m_pMainDlg; //界面指针
CWinThread* m_pThrd; // 该CSocket所在的线程
};