ClientFormView.cpp
资源名称:QQ示例源码.rar [点击查看]
上传用户:power_led
上传日期:2013-04-11
资源大小:373k
文件大小:2k
源码类别:
ICQ/即时通讯
开发平台:
Visual C++
- // ClientFormView.cpp : implementation file
- //
- #include "stdafx.h"
- #include "ChatClient.h"
- #include "ClientFormView.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CClientFormView
- IMPLEMENT_DYNCREATE(CClientFormView, CFormView)
- CClientFormView::CClientFormView()
- : CFormView(CClientFormView::IDD)
- {
- //{{AFX_DATA_INIT(CClientFormView)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- CClientFormView::~CClientFormView()
- {
- }
- void CClientFormView::DoDataExchange(CDataExchange* pDX)
- {
- CFormView::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CClientFormView)
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CClientFormView, CFormView)
- //{{AFX_MSG_MAP(CClientFormView)
- ON_WM_CREATE()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CClientFormView diagnostics
- #ifdef _DEBUG
- void CClientFormView::AssertValid() const
- {
- CFormView::AssertValid();
- }
- void CClientFormView::Dump(CDumpContext& dc) const
- {
- CFormView::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CClientFormView message handlers
- int CClientFormView::OnCreate(LPCREATESTRUCT lpCreateStruct)
- {
- if (CFormView::OnCreate(lpCreateStruct) == -1)
- return -1;
- // TODO: Add your specialized creation code here
- return 0;
- }
- void CClientFormView::OnInitialUpdate()
- {
- CFormView::OnInitialUpdate();
- // TODO: Add your specialized code here and/or call the base class
- }