ClientFormView.cpp
上传用户:power_led
上传日期:2013-04-11
资源大小:373k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. // ClientFormView.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ChatClient.h"
  5. #include "ClientFormView.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CClientFormView
  13. IMPLEMENT_DYNCREATE(CClientFormView, CFormView)
  14. CClientFormView::CClientFormView()
  15. : CFormView(CClientFormView::IDD)
  16. {
  17. //{{AFX_DATA_INIT(CClientFormView)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. CClientFormView::~CClientFormView()
  22. {
  23. }
  24. void CClientFormView::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CFormView::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CClientFormView)
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CClientFormView, CFormView)
  31. //{{AFX_MSG_MAP(CClientFormView)
  32. ON_WM_CREATE()
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CClientFormView diagnostics
  37. #ifdef _DEBUG
  38. void CClientFormView::AssertValid() const
  39. {
  40. CFormView::AssertValid();
  41. }
  42. void CClientFormView::Dump(CDumpContext& dc) const
  43. {
  44. CFormView::Dump(dc);
  45. }
  46. #endif //_DEBUG
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CClientFormView message handlers
  49. int CClientFormView::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  50. {
  51. if (CFormView::OnCreate(lpCreateStruct) == -1)
  52. return -1;
  53. // TODO: Add your specialized creation code here
  54. return 0;
  55. }
  56. void CClientFormView::OnInitialUpdate() 
  57. {
  58. CFormView::OnInitialUpdate();
  59. // TODO: Add your specialized code here and/or call the base class
  60. }