资源简介
minC编译器框架结构,编译原理原理课程设计的结果。
代码片段和文件信息
// by4.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “by4.h“
#include “MainFrm.h“
#include “by4Doc.h“
#include “by4View.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CBy4App
BEGIN_MESSAGE_MAP(CBy4App CWinApp)
//{{AFX_MSG_MAP(CBy4App)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CBy4App construction
CBy4App::CBy4App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CBy4App object
CBy4App theApp;
/////////////////////////////////////////////////////////////////////////////
// CBy4App initialization
BOOL CBy4App::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CBy4Doc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CBy4View));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
/////////////////////////////////////////
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 35876 2014-12-17 18:25 MINC(华东)\by4\by4.aps
文件 3220 2014-12-17 18:38 MINC(华东)\by4\by4.clw
文件 4155 2014-10-08 20:14 MINC(华东)\by4\by4.cpp
文件 5065 2014-12-05 09:32 MINC(华东)\by4\by4.dsp
文件 529 2014-10-08 20:14 MINC(华东)\by4\by4.dsw
文件 1323 2014-10-08 20:14 MINC(华东)\by4\by4.h
文件 377856 2014-12-17 18:39 MINC(华东)\by4\by4.ncb
文件 48640 2014-12-17 18:39 MINC(华东)\by4\by4.opt
文件 240 2014-12-17 18:39 MINC(华东)\by4\by4.plg
文件 12939 2014-12-08 08:57 MINC(华东)\by4\by4.rc
文件 1682 2014-10-08 20:14 MINC(华东)\by4\by4Doc.cpp
文件 1442 2014-10-08 20:14 MINC(华东)\by4\by4Doc.h
文件 2600 2014-12-15 23:05 MINC(华东)\by4\by4View.cpp
文件 1738 2014-12-15 23:01 MINC(华东)\by4\by4View.h
文件 47 2014-11-29 13:03 MINC(华东)\by4\Data.txt
文件 4059 2014-11-29 01:17 MINC(华东)\by4\EditListCtrl.cpp
文件 1670 2014-12-08 08:13 MINC(华东)\by4\EditListCtrl.h
文件 762 2014-11-28 12:32 MINC(华东)\by4\Keyword.cpp
文件 1020 2014-12-08 08:19 MINC(华东)\by4\Keyword.h
文件 11160 2014-12-17 18:39 MINC(华东)\by4\MainFrm.cpp
文件 2249 2014-12-17 17:38 MINC(华东)\by4\MainFrm.h
文件 4234 2014-12-17 18:02 MINC(华东)\by4\MyEDIT.cpp
文件 1599 2014-12-17 17:40 MINC(华东)\by4\MyEDIT.h
文件 2970 2014-12-15 23:17 MINC(华东)\by4\MyWork.cpp
文件 1434 2014-12-15 23:16 MINC(华东)\by4\MyWork.h
文件 4239 2014-10-08 20:14 MINC(华东)\by4\ReadMe.txt
文件 1078 2014-10-08 20:14 MINC(华东)\by4\res\by4.ico
文件 395 2014-10-08 20:14 MINC(华东)\by4\res\by4.rc2
文件 1078 2014-10-08 20:14 MINC(华东)\by4\res\by4Doc.ico
文件 7358 2014-12-05 08:36 MINC(华东)\by4\res\icon1.ico
............此处省略30个文件信息
- 上一篇:扩展卡尔曼滤波(EKF)仿真演示
- 下一篇:5G安全报告(2020)-中文版.pdf
评论
共有 条评论