资源简介
C++实现简单的MVC框架
代码片段和文件信息
// MVCDemo.cpp : 定义控制台应用程序的入口点。
//
#include “stdafx.h“
#include “PrintController.h“
#include “PrintModel.h“
#include “PrintView.h“
#include
using std::wcin;
using std::endl;
int _tmain(int argc _TCHAR* argv[])
{
PrintModel model;
PrintController controller(&model);
PrintView view(&model);
controller.Register(&model&view);
view.Run();
std::wstring str;
while (1)
{
wcin>>str;
controller.HandleUserInput(&str);
}
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 217 2014-06-18 18:52 MVCDemo\Controllerba
文件 357 2014-06-19 10:12 MVCDemo\Modelba
文件 509 2014-06-19 11:44 MVCDemo\MVCDemo.cpp
文件 5007 2014-06-19 10:01 MVCDemo\MVCDemo.vcproj
文件 161 2014-06-18 18:52 MVCDemo\Observer.h
文件 441 2014-06-19 10:49 MVCDemo\PrintController.cpp
文件 373 2014-06-19 10:49 MVCDemo\PrintController.h
文件 657 2014-06-19 10:51 MVCDemo\PrintModel.cpp
文件 528 2014-06-19 10:51 MVCDemo\PrintModel.h
文件 919 2014-06-19 11:41 MVCDemo\PrintView.cpp
文件 667 2014-06-19 11:37 MVCDemo\PrintView.h
文件 212 2014-06-18 15:56 MVCDemo\stdafx.cpp
文件 233 2014-06-18 15:56 MVCDemo\stdafx.h
文件 498 2014-06-18 15:56 MVCDemo\targetver.h
文件 128 2014-06-19 11:18 MVCDemo\Taskba
文件 1662 2014-06-19 11:49 MVCDemo\Threadba
文件 649 2014-06-19 11:49 MVCDemo\Threadba
文件 97 2014-06-18 18:53 MVCDemo\Viewba
目录 0 2014-06-19 12:07 MVCDemo
----------- --------- ---------- ----- ----
13315 19
- 上一篇:C++_实现多元线性回归可任意指定几元
- 下一篇:MR25H40C语言驱动
相关资源
- c++ 数字键盘设计(源码)
- Linux优先级时间片调度C++源码
- c++ RoyCardTableView 列表插入
- 电机控制平台(c++源码)
- PID 控制算法实现(fuzzy-PID-controller)
- c++ 获取当前执行位置的调用栈
- windows文件夹监控(c++源码)
- C++ tts开发 可调节语速,音量,切换语
- c++(3_MSGS.C)
- c++实现P2PDemo(点对点聊天)
- windows 串口升级工具(c++源码)
- ntmedsys.sys(c++源码)
- DSS中的RTSPclientLib程序
- c 常用的数据结构 (Errata for Ford/Top
- RTSPRTP C++ 源代码
-
c++ xm
lRPC - rip协议编程及代码实现
- ippicv_2017u3_win_intel64_general_20170822.zip
- Windows Sockets 编程及UR机器人通信数据
- 跟进域名解析IP地址(c++ builder)
- iCord-屏幕录制(c++源码)
- 用ADO 对C++连接ORACLE 数据库
- 基于libevent 实现的http服务C++(myhttp
- 多人聊天室c++源码(附服务器端以及
- c++ 不打开图档可替换字符串源码
- opencv:视频图片相互转换程序
- VC++图片控件(Picture Control)显示资源
- Opencv3中SIFT算法详解
- MFC图片操作(PRO5_PNGDlg.cpp)
- c++ 实现 凯撒加密、解密
评论
共有 条评论