wvltview.h

来自「小波变换技术用VC来实现的程序很好的直接可以运行」· C头文件 代码 · 共 59 行

H
59
字号
// WvltView.h : interface of the CWvltView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_WVLTVIEW_H__F6049170_698F_11D2_A679_0020AFD8B8B6__INCLUDED_)
#define AFX_WVLTVIEW_H__F6049170_698F_11D2_A679_0020AFD8B8B6__INCLUDED_

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

class CWvltView : public CView
{
protected: // create from serialization only
	CWvltView();
	DECLARE_DYNCREATE(CWvltView)

// Attributes
public:
	CWvltDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWvltView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	//}}AFX_VIRTUAL

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

protected:
// Generated message map functions
protected:
	//{{AFX_MSG(CWvltView)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in WvltView.cpp
inline CWvltDoc* CWvltView::GetDocument()
   { return (CWvltDoc*)m_pDocument; }
#endif

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_WVLTVIEW_H__F6049170_698F_11D2_A679_0020AFD8B8B6__INCLUDED_)

⌨️ 快捷键说明

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