📄 action.hpp
字号:
#include "DataType.hpp"
#include <string>
#include <vector>
using namespace std;
class OPERATION
{
public:
OPERATION ();
~OPERATION ();
void QUERY ();
void LEND ();
void GIVEBACK ();
void MANAGE ();
void KEY_ADD ();
protected:
void ADD_BOOK ();;
unsigned long book_total;
vector < Tbook > book_list;
vector < Tbook > :: iterator bp;
Tbook now;
private:
string administrator_name;
string administrator_pwd;
char database_address[110];
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -