📄 client.h
字号:
#ifndef CLIENT_H
#define CLIENT_H
#include <string>
#include <iostream>
using namespace std;
#include "remote.h"
class Client : public Remote
{
public:
Client( string __name, string __password );
~Client();
public:
void disconnected(void);
string& getName()
{
return _name;
}
string& getPassword()
{
return _password;
}
protected:
string _name;
string _password;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -