lmsview.h

来自「多通道IIR自适应算法仿真效果图」· C头文件 代码 · 共 93 行

H
93
字号
// lmsView.h : interface of the CLmsView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_LMSVIEW_H__74B91504_908B_4B2E_9031_25FF7F91DF7D__INCLUDED_)
#define AFX_LMSVIEW_H__74B91504_908B_4B2E_9031_25FF7F91DF7D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CLmsDoc;
class CLmsView : public CFormView
{
protected: // create from serialization only
	CLmsView();
	DECLARE_DYNCREATE(CLmsView)

public:
	//{{AFX_DATA(CLmsView)
	enum { IDD = IDD_LMS_FORM };
	BOOL	m_nolms;
	BOOL	m_iirlms;
	BOOL	m_firlms;
	float	m_Uvalue;
	float	m_aaValue;
	//}}AFX_DATA

// Attributes
public:
	CLmsDoc* GetDocument();

// Operations
public:
	bool  m_squareinput;
	bool  m_triangleinput;
	bool  m_sininput;



// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CLmsView)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual void OnInitialUpdate(); // called first time after construct
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CLmsView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CLmsView)
	afx_msg void Onnolms();
	afx_msg void Onfirlms();
	afx_msg void Oniirlms();
	afx_msg void Onshowoutput();
	afx_msg void Onuvalue();
	afx_msg void OnChangeUUvalue();
	afx_msg void Onsininput();
	afx_msg void Onsquareinput();
	afx_msg void Ontriangleinput();
	afx_msg void OnChangeaaValue();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in lmsView.cpp
inline CLmsDoc* CLmsView::GetDocument()
   { return (CLmsDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_LMSVIEW_H__74B91504_908B_4B2E_9031_25FF7F91DF7D__INCLUDED_)

⌨️ 快捷键说明

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