• 大小: 1.79MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-30
  • 语言: C/C++
  • 标签: 曲线拟合  

资源简介

用c++实现的曲线拟合 ,程序已在VC6.0编译过了.

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “aaa.h“
#include “aaaDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CAaaApp

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

/////////////////////////////////////////////////////////////////////////////
// CAaaApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CAaaApp object

CAaaApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CAaaApp initialization

BOOL CAaaApp::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

CAaaDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      35464  2009-05-18 15:49  aaa\aaa.aps

     文件       1080  2009-05-18 16:56  aaa\aaa.clw

     文件       2021  2009-05-18 15:47  aaa\aaa.cpp

     文件       4105  2009-05-18 15:47  aaa\aaa.dsp

     文件        529  2009-05-18 15:47  aaa\aaa.dsw

     文件       1291  2009-05-18 15:47  aaa\aaa.h

     文件      41984  2009-05-18 16:56  aaa\aaa.ncb

     文件      54784  2009-05-18 16:56  aaa\aaa.opt

     文件        240  2009-05-18 16:56  aaa\aaa.plg

     文件       5296  2009-05-18 15:49  aaa\aaa.rc

     文件       5985  2009-05-18 16:56  aaa\aaaDlg.cpp

     文件       1637  2009-05-18 16:37  aaa\aaaDlg.h

     文件     106533  2009-05-18 16:56  aaa\Debug\aaa.exe

     文件     209736  2009-05-18 16:56  aaa\Debug\aaa.ilk

     文件      12776  2009-05-18 16:37  aaa\Debug\aaa.obj

     文件    5495768  2009-05-18 15:49  aaa\Debug\aaa.pch

     文件     353280  2009-05-18 16:56  aaa\Debug\aaa.pdb

     文件       2668  2009-05-18 15:49  aaa\Debug\aaa.res

     文件      27533  2009-05-18 16:56  aaa\Debug\aaaDlg.obj

     文件     105553  2009-05-18 15:49  aaa\Debug\StdAfx.obj

     文件     214016  2009-05-18 16:56  aaa\Debug\vc60.idb

     文件     364544  2009-05-18 16:56  aaa\Debug\vc60.pdb

     目录          0  2009-05-18 16:56  aaa\Debug

     文件       3525  2009-05-18 15:47  aaa\ReadMe.txt

     文件       1078  2009-05-18 15:47  aaa\res\aaa.ico

     文件        395  2009-05-18 15:47  aaa\res\aaa.rc2

     目录          0  2009-05-18 15:47  aaa\res

     文件        681  2009-05-18 15:49  aaa\resource.h

     文件        205  2009-05-18 15:47  aaa\StdAfx.cpp

     文件       1054  2009-05-18 15:47  aaa\StdAfx.h

............此处省略4个文件信息

评论

共有 条评论