clientsocket.h
来自「这是书上的代码」· C头文件 代码 · 共 23 行
H
23 行
// Definition of the ClientSocket class#ifndef ClientSocket_class#define ClientSocket_class#include "Socket.h"class ClientSocket : private Socket{ public: ClientSocket ( std::string host, int port ); virtual ~ClientSocket(){}; const ClientSocket& operator << ( const std::string& ) const; const ClientSocket& operator >> ( std::string& ) const;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?