加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
file_historys.h 543 Bytes
一键复制 编辑 原始数据 按行查看 历史
XD.Yang 提交于 2015-09-16 15:42 . 即时通信软件
#ifndef FILE_HISTORYS_H
#define FILE_HISTORYS_H
#include "python.h"
#include <string>
#include <list>
using namespace std;
class File_history
{
public:
File_history(int argc,char** argv);
~File_history();
list<string> f_history(const char* path);
static File_history* instance;
static void initInstance(int argc,char** argv)
{
if(NULL == instance)
instance = new File_history(argc,argv);
}
static File_history* GetInstance()
{
return instance;
}
};
#endif // FILE_HISTORYS_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化