Files
CpCtrl/Main/GlobalDefs.h
2025-06-13 17:35:27 +08:00

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