main.cpp

来自「Password Safe Password Safe is a passwor」· C++ 代码 · 共 26 行

CPP
26
字号
#include "model.h"#include "view.h"#ifdef WIN32/*  The one and only ThisMfcApp object.  In the MFC world, creating  this global object is what starts the application.*/#include "ThisMfcApp.h"ThisMfcApp app;#elseint main( int argc, char** argv){	Model * model = Model::Instance();	model->Main();	return 0;}#endif

⌨️ 快捷键说明

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