home *** CD-ROM | disk | FTP | other *** search
- // gpsrcView.h : interface of the CGpsrcView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CGpsrcView : public CScrollView
- {
- protected: // create from serialization only
- CGpsrcView();
- DECLARE_DYNCREATE(CGpsrcView)
-
- // Attributes
- public:
- CGpsrcDoc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CGpsrcView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- virtual void OnInitialUpdate(); // called first time after construct
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CGpsrcView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CGpsrcView)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnViewClear();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in gpsrcView.cpp
- inline CGpsrcDoc* CGpsrcView::GetDocument()
- { return (CGpsrcDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-