1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #if !defined(AFX_YLGLVIEW_H__250FB43A_FCEB_49F3_AF3E_B7C61B37BFB0__INCLUDED_)
- #define AFX_YLGLVIEW_H__250FB43A_FCEB_49F3_AF3E_B7C61B37BFB0__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CYLGLView : public CView
- {
- protected:
- CYLGLView();
- DECLARE_DYNCREATE(CYLGLView)
- public:
- CYLGLDoc* GetDocument();
- public:
-
-
- public:
- virtual void OnDraw(CDC* pDC);
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- virtual void OnInitialUpdate();
-
- public:
- virtual ~CYLGLView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- protected:
- protected:
-
-
- DECLARE_MESSAGE_MAP()
- };
- #ifndef _DEBUG
- inline CYLGLDoc* CYLGLView::GetDocument()
- { return (CYLGLDoc*)m_pDocument; }
- #endif
- #endif
|