home *** CD-ROM | disk | FTP | other *** search
- // SampleView.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "tracker.h"
- #include "SampleView.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CSampleView
-
- IMPLEMENT_DYNCREATE(CSampleView, CView)
-
- CSampleView::CSampleView()
- {
- }
-
- CSampleView::~CSampleView()
- {
- }
-
-
- BEGIN_MESSAGE_MAP(CSampleView, CView)
- //{{AFX_MSG_MAP(CSampleView)
- ON_WM_PAINT()
- ON_WM_CANCELMODE()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CSampleView drawing
-
- void CSampleView::OnDraw(CDC* pDC)
- {
- CDocument* pDoc = GetDocument();
- // TODO: add draw code here
- pDC->TextOut (10,10,"wef");
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CSampleView diagnostics
-
- #ifdef _DEBUG
- void CSampleView::AssertValid() const
- {
- CView::AssertValid();
- }
-
- void CSampleView::Dump(CDumpContext& dc) const
- {
- CView::Dump(dc);
- }
- #endif //_DEBUG
-
- /////////////////////////////////////////////////////////////////////////////
- // CSampleView message handlers
-
-