资源简介
利用智能决策技术,模拟作战防御,并给出正确的防御方案
代码片段和文件信息
// Dss.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Dss.h“
#include “DssDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDssApp
BEGIN_MESSAGE_MAP(CDssApp CWinApp)
//{{AFX_MSG_MAP(CDssApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDssApp construction
CDssApp::CDssApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDssApp object
CDssApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDssApp initialization
BOOL CDssApp::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
CDssDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2097204 2010-01-25 09:26 Dss.exe
文件 36936 2010-01-11 10:09 GDSS源码\Dss.aps
文件 1661 2010-01-11 10:08 GDSS源码\Dss.clw
文件 2021 2009-12-02 20:51 GDSS源码\Dss.cpp
文件 4182 2009-12-02 23:03 GDSS源码\Dss.dsp
文件 531 2009-12-02 20:51 GDSS源码\Dss.dsw
文件 1291 2009-12-02 20:51 GDSS源码\Dss.h
文件 50176 2010-01-11 10:09 GDSS源码\Dss.ncb
文件 49664 2010-01-11 10:09 GDSS源码\Dss.opt
文件 639 2010-01-11 10:09 GDSS源码\Dss.plg
文件 6592 2010-01-11 10:09 GDSS源码\Dss.rc
文件 6733 2009-12-04 09:03 GDSS源码\DssDlg.cpp
文件 1350 2009-12-02 22:01 GDSS源码\DssDlg.h
文件 3525 2009-12-02 20:51 GDSS源码\ReadMe.txt
文件 766 2009-12-02 21:22 GDSS源码\res\bit.bmp
文件 1078 2010-01-11 10:09 GDSS源码\res\Dss.ico
文件 395 2009-12-02 20:51 GDSS源码\res\Dss.rc2
文件 1048 2009-12-02 22:55 GDSS源码\resource.h
文件 205 2009-12-02 20:51 GDSS源码\StdAfx.cpp
文件 1054 2009-12-02 20:51 GDSS源码\StdAfx.h
目录 0 2010-01-11 10:09 GDSS源码\res
目录 0 2010-01-25 09:27 GDSS源码
----------- --------- ---------- ----- ----
2267051 22
评论
共有 条评论