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

📄 model.h

📁 Password Safe Password Safe is a password database utility. Users can keep their passwords securely
💻 H
字号:
#ifndef MODEL_H#define MODEL_H#include "ThisMfcApp.h"#include "view.h"//  Contains methods called by view (GUI)class Model{public:	static Model * Instance()	{		if ( _instance == 0 )			_instance = new Model();		return _instance;	}	~Model();	//  Kick off application	void Main();		const char * GetDatabaseName() { return 0; };	int      CheckSafeCombination(const char *combo);protected:	//  Don't allow anyone to create this object	Model() {};private:	static Model * _instance;	View	     * _view;};#endif //  MODEL_H

⌨️ 快捷键说明

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