home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / SampleView.cpp < prev    next >
C/C++ Source or Header  |  2003-01-06  |  1KB  |  63 lines

  1. // SampleView.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "tracker.h"
  6. #include "SampleView.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CSampleView
  16.  
  17. IMPLEMENT_DYNCREATE(CSampleView, CView)
  18.  
  19. CSampleView::CSampleView()
  20. {
  21. }
  22.  
  23. CSampleView::~CSampleView()
  24. {
  25. }
  26.  
  27.  
  28. BEGIN_MESSAGE_MAP(CSampleView, CView)
  29.     //{{AFX_MSG_MAP(CSampleView)
  30.     ON_WM_PAINT()
  31.     ON_WM_CANCELMODE()
  32.     //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CSampleView drawing
  37.  
  38. void CSampleView::OnDraw(CDC* pDC)
  39. {
  40.     CDocument* pDoc = GetDocument();
  41.     // TODO: add draw code here
  42.     pDC->TextOut (10,10,"wef");
  43. }
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CSampleView diagnostics
  47.  
  48. #ifdef _DEBUG
  49. void CSampleView::AssertValid() const
  50. {
  51.     CView::AssertValid();
  52. }
  53.  
  54. void CSampleView::Dump(CDumpContext& dc) const
  55. {
  56.     CView::Dump(dc);
  57. }
  58. #endif //_DEBUG
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61. // CSampleView message handlers
  62.  
  63.