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