model.h

来自「Password Safe Password Safe is a passwor」· C头文件 代码 · 共 40 行

H
40
字号
#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 + =
减小字号Ctrl + -
显示快捷键?