⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tlzwview.h

📁 LZW压缩算法源代码和示例程序代码c
💻 H
字号:
// tlzwview.h : interface of the CTlzwView class
//
/////////////////////////////////////////////////////////////////////////////

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

public:
	//{{AFX_DATA(CTlzwView)
	enum { IDD = IDD_TLZW_FORM };
	//}}AFX_DATA

// Attributes
public:
	CTlzwDoc* GetDocument();

// Operations
public:

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

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support

// Generated message map functions
protected:
	//{{AFX_MSG(CTlzwView)
	afx_msg void OnSingle();
	afx_msg void OnDecode();
	afx_msg void OnBatch();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in tlzwview.cpp
inline CTlzwDoc* CTlzwView::GetDocument()
   { return (CTlzwDoc*)m_pDocument; }
#endif

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

⌨️ 快捷键说明

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