13 lines
251 B
C++
13 lines
251 B
C++
#ifndef CPCTRL_GLOBALDEFS_H
|
|
#define CPCTRL_GLOBALDEFS_H
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include "Send.h"
|
|
|
|
// 全局键值对存储
|
|
extern std::vector<std::string> historyList;
|
|
extern Send Sender;
|
|
|
|
#endif //CPCTRL_GLOBALDEFS_H
|