home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HomeWare 14
/
HOMEWARE14.bin
/
windows
/
graphs
/
multicon.arj
/
LINEVIEW.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-01
|
908b
|
46 lines
// lineview.cpp : implementation file
//
#include "stdafx.h"
#include "multicon.h"
#include "lineview.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CLineView
IMPLEMENT_DYNCREATE(CLineView, CView)
CLineView::CLineView()
{
}
CLineView::~CLineView()
{
}
BEGIN_MESSAGE_MAP(CLineView, CView)
//{{AFX_MSG_MAP(CLineView)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CLineView drawing
void CLineView::OnDraw(CDC* pDC)
{
CDocument* pDoc = GetDocument();
// TODO: add draw code here
}
/////////////////////////////////////////////////////////////////////////////
// CLineView message handlers