73 lines
1.4 KiB
C++
73 lines
1.4 KiB
C++
// NullForm.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "sp.h"
|
|
#include "NullForm.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CNullForm
|
|
|
|
IMPLEMENT_DYNCREATE(CNullForm, CFormView)
|
|
|
|
CNullForm::CNullForm()
|
|
: CFormView(CNullForm::IDD)
|
|
{
|
|
//{{AFX_DATA_INIT(CNullForm)
|
|
// NOTE: the ClassWizard will add member initialization here
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
CNullForm::~CNullForm()
|
|
{
|
|
}
|
|
|
|
void CNullForm::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CFormView::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CNullForm)
|
|
// NOTE: the ClassWizard will add DDX and DDV calls here
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CNullForm, CFormView)
|
|
//{{AFX_MSG_MAP(CNullForm)
|
|
// NOTE - the ClassWizard will add and remove mapping macros here.
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CNullForm diagnostics
|
|
|
|
#ifdef _DEBUG
|
|
void CNullForm::AssertValid() const
|
|
{
|
|
CFormView::AssertValid();
|
|
}
|
|
|
|
void CNullForm::Dump(CDumpContext& dc) const
|
|
{
|
|
CFormView::Dump(dc);
|
|
}
|
|
#endif //_DEBUG
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CNullForm message handlers
|
|
|
|
void CNullForm::Activate()
|
|
{
|
|
|
|
}
|
|
|
|
void CNullForm::DeActivate()
|
|
{
|
|
|
|
}
|