• 大小: 2.21MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-08
  • 语言: 其他
  • 标签: ASK  

资源简介

去噪、调制、解调。为ASK课程设计原版资料。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “ASK.h“
#include “ASKDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CASKApp

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

/////////////////////////////////////////////////////////////////////////////
// CASKApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CASKApp object

CASKApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CASKApp initialization

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

CASKDlg 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-10-14 12:13  ASK\
     文件       37180  2011-07-12 20:57  ASK\ASK.APS
     文件        1905  2011-07-12 21:41  ASK\ASK.clw
     文件        2021  2011-07-05 16:38  ASK\ASK.cpp
     文件        4237  2011-07-05 16:39  ASK\ASK.dsp
     文件         531  2011-07-05 16:38  ASK\ASK.dsw
     文件        1291  2011-07-05 16:38  ASK\ASK.h
     文件      140288  2011-07-12 21:41  ASK\ASK.ncb
     文件       49664  2011-07-12 21:41  ASK\ASK.opt
     文件         673  2011-07-12 20:57  ASK\ASK.plg
     文件        6822  2011-07-12 20:57  ASK\ASK.rc
     文件       18204  2011-07-11 22:04  ASK\ASKDlg.cpp
     文件        1886  2011-07-07 08:40  ASK\ASKDlg.h
     目录           0  2011-10-14 12:13  ASK\Debug\
     文件      122928  2011-07-12 20:57  ASK\Debug\ASK.exe
     文件      228428  2011-07-12 20:57  ASK\Debug\ASK.ilk
     文件       14326  2011-07-06 16:41  ASK\Debug\ASK.obj
     文件     5501520  2011-07-05 16:47  ASK\Debug\ASK.pch
     文件      418816  2011-07-12 20:57  ASK\Debug\ASK.pdb
     文件        3380  2011-07-12 20:57  ASK\Debug\ASK.res
     文件       51168  2011-07-12 20:57  ASK\Debug\ASKDlg.obj
     文件       27633  2011-07-12 20:51  ASK\Debug\SigTranmit.obj
     文件      105786  2011-07-05 16:47  ASK\Debug\StdAfx.obj
     文件      230400  2011-07-12 21:41  ASK\Debug\vc60.idb
     文件      389120  2011-07-12 20:54  ASK\Debug\vc60.pdb
     文件        3525  2011-07-05 16:38  ASK\ReadMe.txt
     目录           0  2011-10-14 12:13  ASK\res\
     文件        1371  2011-07-06 16:12  ASK\resource.h
     文件        1078  2011-07-05 16:38  ASK\res\ASK.ico
     文件         395  2011-07-05 16:38  ASK\res\ASK.rc2
     文件        5730  2011-07-11 22:22  ASK\SigTranmit.cpp
............此处省略3个文件信息

评论

共有 条评论