www.pudn.com > SpliterView.rar > ChatView.cpp


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