资源简介

vc实现摄影测量内定向程序。基于vc6平台, 正常运行,内含注释。

资源截图

代码片段和文件信息

// InnerOrient.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “InnerOrient.h“

#include “MainFrm.h“
#include “InnerOrientDoc.h“
#include “InnerOrientView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CInnerOrientApp

BEGIN_MESSAGE_MAP(CInnerOrientApp CWinApp)
//{{AFX_MSG_MAP(CInnerOrientApp)
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()

/////////////////////////////////////////////////////////////////////////////
// CInnerOrientApp construction

CInnerOrientApp::CInnerOrientApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CInnerOrientApp object

CInnerOrientApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CInnerOrientApp initialization

BOOL CInnerOrientApp::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(CInnerOrientDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CInnerOrientView));
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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-01-05 23:08  InnerOrient\
     文件        1460  2013-01-03 14:18  InnerOrient\cofficient.zip
     目录           0  2013-01-02 18:57  InnerOrient\Debug\
     文件      131140  2013-01-02 18:57  InnerOrient\Debug\InnerOrient.exe
     文件      398804  2013-01-02 18:57  InnerOrient\Debug\InnerOrient.ilk
     文件       23451  2013-01-01 17:07  InnerOrient\Debug\InnerOrient.obj
     文件     5495168  2013-01-01 15:42  InnerOrient\Debug\InnerOrient.pch
     文件      500736  2013-01-02 18:57  InnerOrient\Debug\InnerOrient.pdb
     文件        7548  2013-01-01 15:42  InnerOrient\Debug\InnerOrient.res
     文件       28560  2013-01-02 18:57  InnerOrient\Debug\InnerOrientDlg.obj
     文件       15205  2013-01-01 15:42  InnerOrient\Debug\InnerOrientDoc.obj
     文件       22407  2013-01-02 12:27  InnerOrient\Debug\InnerOrientView.obj
     文件       20158  2013-01-01 15:42  InnerOrient\Debug\MainFrm.obj
     文件       12671  2013-01-02 10:13  InnerOrient\Debug\MatrixCalc.obj
     文件      105877  2013-01-01 15:42  InnerOrient\Debug\StdAfx.obj
     文件      230400  2013-01-03 14:14  InnerOrient\Debug\vc60.idb
     文件      364544  2013-01-02 18:57  InnerOrient\Debug\vc60.pdb
     文件       44536  2013-01-01 15:37  InnerOrient\InnerOrient.aps
     文件        2773  2013-01-05 22:57  InnerOrient\InnerOrient.clw
     文件        4299  2013-01-01 15:30  InnerOrient\InnerOrient.cpp
     文件        5002  2013-01-01 22:02  InnerOrient\InnerOrient.dsp
     文件         545  2013-01-01 15:30  InnerOrient\InnerOrient.dsw
     文件        1411  2013-01-01 15:30  InnerOrient\InnerOrient.h
     文件       74752  2013-01-05 22:57  InnerOrient\InnerOrient.ncb
     文件       57856  2013-01-05 22:57  InnerOrient\InnerOrient.opt
     文件        1248  2013-01-02 18:57  InnerOrient\InnerOrient.plg
     文件       12223  2013-01-01 15:37  InnerOrient\InnerOrient.rc
     文件        7367  2013-01-02 18:57  InnerOrient\InnerOrientDlg.cpp
     文件        1486  2013-01-02 12:27  InnerOrient\InnerOrientDlg.h
     文件        1842  2013-01-01 15:30  InnerOrient\InnerOrientDoc.cpp
     文件        1530  2013-01-01 15:30  InnerOrient\InnerOrientDoc.h
............此处省略19个文件信息

评论

共有 条评论