12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- // LYFZIPManageView.h : interface of the CLYFZIPManageView class
- //
- /////////////////////////////////////////////////////////////////////////////
- #if !defined(AFX_LYFZIPManageVIEW_H__250FB43A_FCEB_49F3_AF3E_B7C61B37BFB0__INCLUDED_)
- #define AFX_LYFZIPManageVIEW_H__250FB43A_FCEB_49F3_AF3E_B7C61B37BFB0__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CLYFZIPManageView : public CView
- {
- protected: // create from serialization only
- CLYFZIPManageView();
- DECLARE_DYNCREATE(CLYFZIPManageView)
- // Attributes
- public:
- CLYFZIPManageDoc* GetDocument();
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CLYFZIPManageView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- virtual void OnInitialUpdate();
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CLYFZIPManageView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- protected:
- // Generated message map functions
- protected:
- //{{AFX_MSG(CLYFZIPManageView)
- afx_msg void OnTimer(UINT nIDEvent);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #ifndef _DEBUG // debug version in LYFZIPManageView.cpp
- inline CLYFZIPManageDoc* CLYFZIPManageView::GetDocument()
- { return (CLYFZIPManageDoc*)m_pDocument; }
- #endif
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_LYFZIPManageVIEW_H__250FB43A_FCEB_49F3_AF3E_B7C61B37BFB0__INCLUDED_)
|