monitor_client.h
来自「robocuo相关资料robocuo相关资料」· C头文件 代码 · 共 20 行
H
20 行
#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
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?