?? monitor_client.h
字號:
#ifndef _MONITOR_CLIENT_H#define _MONITOR_CLIENT_H#include <string>class monitor_client{public: monitor_client(); void connect(string); void send_to_server(); void draw_circle(double, double, double); void draw_line(double, double, double,double);private: int fd; char buffer[10000];};#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -