www.pudn.com > RMS2000_C.rar > CurveFrame.cpp


// CurveFrame.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "DrawCli.h" 
#include "CurveFrame.h" 
 
#include "CurveView.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CCurveFrame 
 
IMPLEMENT_DYNCREATE(CCurveFrame, CMDIChildWnd) 
 
CCurveFrame::CCurveFrame() 
{ 
} 
 
CCurveFrame::~CCurveFrame() 
{ 
} 
 
 
BEGIN_MESSAGE_MAP(CCurveFrame, CMDIChildWnd) 
	//{{AFX_MSG_MAP(CCurveFrame) 
		// NOTE - the ClassWizard will add and remove mapping macros here. 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CCurveFrame message handlers 
 
BOOL CCurveFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)  
{ 
 	return m_wndFolderFrame.Create(this, 
		RUNTIME_CLASS(CCurveView), 
		pContext, 
		IDR_FOLDERTABS); 
	 
//	return CMDIChildWnd::OnCreateClient(lpcs, pContext); 
}