⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qimconsole.h

📁 我们一个小组
💻 H
字号:
#pragma once

#include <string>
#include "Qim.h"

using std::string ;

class QimConsole
{
public:
	QimConsole(bool bAutoSave = false) ;
	bool Load(const string& strStaticTableFilename, const string& strDynamicTableFilename, const string& strHashtableFilename); 
	bool LoadFromRawPyWordFreFile(const string& strPyWordFreFileName) ;
	bool Run() ;
	bool Save() ;

private:
	void Process(const string& py) ;

	Qim m_Qim ;
	string m_strStaticTableFilename;
	string m_strDynamicTableFilename;
	string m_strHashtableFilename;

	bool m_bAlreadyLoad ;

	bool m_bAutoSave ;
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -