vtdecodedoc.cpp

来自「利用intel dsplib 库函数进行特定2FSK信号(需传导频)解调」· C++ 代码 · 共 84 行

CPP
84
字号
// VTDecodeDoc.cpp : implementation of the CVTDecodeDoc class
//

#include "stdafx.h"
#include "VTDecode.h"

#include "VTDecodeDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CVTDecodeDoc

IMPLEMENT_DYNCREATE(CVTDecodeDoc, CDocument)

BEGIN_MESSAGE_MAP(CVTDecodeDoc, CDocument)
	//{{AFX_MSG_MAP(CVTDecodeDoc)
		// 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
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CVTDecodeDoc construction/destruction

CVTDecodeDoc::CVTDecodeDoc()
{
	// TODO: add one-time construction code here
}

CVTDecodeDoc::~CVTDecodeDoc()
{
}

BOOL CVTDecodeDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CVTDecodeDoc serialization

void CVTDecodeDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CVTDecodeDoc diagnostics

#ifdef _DEBUG
void CVTDecodeDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CVTDecodeDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CVTDecodeDoc commands

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?