60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
// opexec2drsptestgrview.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "geomative.h"
|
|
#include "opexec2drsptestgrview.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// COpExec2DRSPTestGrView
|
|
|
|
IMPLEMENT_DYNCREATE(COpExec2DRSPTestGrView, CView)
|
|
|
|
COpExec2DRSPTestGrView::COpExec2DRSPTestGrView()
|
|
{
|
|
}
|
|
|
|
COpExec2DRSPTestGrView::~COpExec2DRSPTestGrView()
|
|
{
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(COpExec2DRSPTestGrView, CView)
|
|
//{{AFX_MSG_MAP(COpExec2DRSPTestGrView)
|
|
// NOTE - the ClassWizard will add and remove mapping macros here.
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// COpExec2DRSPTestGrView drawing
|
|
|
|
void COpExec2DRSPTestGrView::OnDraw(CDC* pDC)
|
|
{
|
|
CDocument* pDoc = GetDocument();
|
|
// TODO: add draw code here
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// COpExec2DRSPTestGrView diagnostics
|
|
|
|
#ifdef _DEBUG
|
|
void COpExec2DRSPTestGrView::AssertValid() const
|
|
{
|
|
CView::AssertValid();
|
|
}
|
|
|
|
void COpExec2DRSPTestGrView::Dump(CDumpContext& dc) const
|
|
{
|
|
CView::Dump(dc);
|
|
}
|
|
#endif //_DEBUG
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// COpExec2DRSPTestGrView message handlers
|