parmchfinddlg.cpp
来自「signal-processing.rar信号处理demo原码」· C++ 代码 · 共 58 行
CPP
58 行
/*
//
// INTEL CORPORATION PROPRIETARY INFORMATION
// This software is supplied under the terms of a license agreement or
// nondisclosure agreement with Intel Corporation and may not be copied
// or disclosed except in accordance with the terms of that agreement.
// Copyright(c) 2005-2006 Intel Corporation. All Rights Reserved.
//
*/
// CParmChFind dialog gets parameters for certain ippCH functions.
//
/////////////////////////////////////////////////////////////////////////////
// ParmFindDlg.cpp : implementation file
//
#include "stdafx.h"
#include "ippsDemo.h"
#include "ParmChFindDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CParmChFindDlg dialog
IMPLEMENT_DYNAMIC(CParmChFindDlg, CParamDlg)
CParmChFindDlg::CParmChFindDlg(CWnd* pParent /*=NULL*/)
: CParamDlg(CParmChFindDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CParmChFindDlg)
m_index = 0;
//}}AFX_DATA_INIT
}
void CParmChFindDlg::DoDataExchange(CDataExchange* pDX)
{
CParamDlg::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CParmChFindDlg)
DDX_Text(pDX, IDC_INDEX, m_index);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CParmChFindDlg, CParamDlg)
//{{AFX_MSG_MAP(CParmChFindDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CParmChFindDlg message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?