⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 connect.h~

📁 底层robocup3d源码。 suse10.0 kdevelop 开发.
💻 H~
字号:
#ifndef MSPACEAGENTS_H#define MSPACEAGENTS_H#include <string>#include <sstream>#include <netinet/in.h>#include <stdio.h>#include <unistd.h>#include <iostream>#include <time.h>#include <sys/types.h>#include "worldmodel.h"#define  buffer_size  8192namespace MSpace {/**the main class for agent actions;@author root*/class Connect{public:    Connect();    void PutOutput(const char* out);    void PutOutputs(const std::string& str);    bool SelectInput();    bool GetInput();    char* GetMsg();    ~Connect();    int  MessageLength;private:     int  mReadFd ;     int  mWriteFd ;     char mBuffer[buffer_size];};}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -