home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / windows / graphs / multicon.arj / LINEVIEW.CPP < prev    next >
C/C++ Source or Header  |  1994-03-01  |  908b  |  46 lines

  1. // lineview.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "multicon.h"
  6. #include "lineview.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char BASED_CODE THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CLineView
  15.  
  16. IMPLEMENT_DYNCREATE(CLineView, CView)
  17.  
  18. CLineView::CLineView()
  19. {
  20. }
  21.  
  22. CLineView::~CLineView()
  23. {
  24. }
  25.  
  26.  
  27. BEGIN_MESSAGE_MAP(CLineView, CView)
  28.     //{{AFX_MSG_MAP(CLineView)
  29.         // NOTE - the ClassWizard will add and remove mapping macros here.
  30.     //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32.  
  33.  
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CLineView drawing
  36.  
  37. void CLineView::OnDraw(CDC* pDC)
  38. {
  39.     CDocument* pDoc = GetDocument();
  40.     // TODO: add draw code here
  41. }
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CLineView message handlers
  45.  
  46.