资源简介

有mfc界面 有参数 有滤波器的波形 有频谱波形 有输出波形

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “FIRFilter.h“
#include “FIRFilterDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CFIRFilterApp

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

/////////////////////////////////////////////////////////////////////////////
// CFIRFilterApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CFIRFilterApp object

CFIRFilterApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CFIRFilterApp initialization

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

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-08-18 08:59  VC实现FIR\
     目录           0  2011-08-18 08:59  VC实现FIR\Debug\
     文件     2158673  2011-08-18 08:52  VC实现FIR\Debug\FIRFilter.exe
     文件     2504208  2011-08-18 08:52  VC实现FIR\Debug\FIRFilter.ilk
     文件       17744  2011-08-18 08:52  VC实现FIR\Debug\FIRFilter.obj
     文件     5458548  2011-08-18 08:52  VC实现FIR\Debug\FIRFilter.pch
     文件     3539968  2011-08-18 08:52  VC实现FIR\Debug\FIRFilter.pdb
     文件        9752  2011-08-18 08:52  VC实现FIR\Debug\FIRFilter.res
     文件       72782  2011-08-18 08:52  VC实现FIR\Debug\FIRFilterDlg.obj
     文件      105680  2011-08-18 08:52  VC实现FIR\Debug\StdAfx.obj
     文件      205824  2011-08-18 08:52  VC实现FIR\Debug\vc60.idb
     文件      380928  2011-08-18 08:52  VC实现FIR\Debug\vc60.pdb
     文件       36756  2009-09-10 06:44  VC实现FIR\FIRFilter.aps
     文件        2620  2009-09-10 09:51  VC实现FIR\FIRFilter.clw
     文件        2105  2009-09-08 06:42  VC实现FIR\FIRFilter.cpp
     文件        4144  2009-09-10 06:53  VC实现FIR\FIRFilter.dsp
     文件         541  2009-09-08 06:42  VC实现FIR\FIRFilter.dsw
     文件        1357  2009-09-08 06:42  VC实现FIR\FIRFilter.h
     文件       74752  2011-08-18 08:52  VC实现FIR\FIRFilter.ncb
     文件       83968  2011-08-18 08:52  VC实现FIR\FIRFilter.opt
     文件        2831  2011-08-18 08:52  VC实现FIR\FIRFilter.plg
     文件        8514  2009-09-10 06:44  VC实现FIR\FIRFilter.rc
     文件       18562  2009-09-10 10:01  VC实现FIR\FIRFilterDlg.cpp
     文件        2847  2009-09-10 09:57  VC实现FIR\FIRFilterDlg.h
     文件        5770  2009-09-10 07:22  VC实现FIR\FIRWin.h
     文件        3633  2009-09-08 06:42  VC实现FIR\ReadMe.txt
     目录           0  2011-08-18 08:59  VC实现FIR\res\
     文件        1469  2009-09-10 06:44  VC实现FIR\resource.h
     文件         766  2008-02-22 15:02  VC实现FIR\res\FIRFilter.ico
     文件         401  2009-09-08 06:42  VC实现FIR\res\FIRFilter.rc2
     文件         211  2009-09-08 06:42  VC实现FIR\StdAfx.cpp
............此处省略1个文件信息

评论

共有 条评论