chatview.h
上传用户:swkcbjrc
上传日期:2016-04-02
资源大小:45277k
文件大小:2k
源码类别:

游戏

开发平台:

Visual C++

  1. #if !defined(AFX_CHATVIEW_H__0F2E6AAC_F715_458A_8C66_6350D50A4C86__INCLUDED_)
  2. #define AFX_CHATVIEW_H__0F2E6AAC_F715_458A_8C66_6350D50A4C86__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // chatview.h : header file
  7. /*
  8. ================================================================================
  9. Copyright (c) 2002  GameHigh Group.
  10. 本程序修改自GAMEHIGH(open source)[http://www.gamehigh.net]项目程序,在此表示感谢紫瑗、骑士、阿鬼等。
  11. email:  wantsoft@163.com
  12. 这一程序是自由软件,你可以遵照自由软件基金会出版的GNU 通用公共许可证条款来修改和
  13. 重新发布这一程序。或者用许可证的第二版,或者(根据你的选择)用任何更新的版本。
  14. 发布这一程序的目的是希望它有用,但没有任何担保。甚至没有适合特定目地的隐含的担保。
  15. 更详细的情况请参阅GNU通用公共许可证。
  16. 你应该已经和程序一起收到一份GNU通用公共许可证的副本。如果还没有,写信给:
  17. The Free Software Foundation, Inc.,  675  Mass Ave,  Cambridge,  MA02139,  USA
  18. 或访问 http://www.gnu.org
  19. 文件版本:
  20.     0.0.1
  21.     Build 020705
  22.     Date  2002-07-05
  23. 修改历史:
  24.     2002-07-05
  25. 创建文件
  26. */
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CChatView view
  29. class CChatView : public CView
  30. {
  31. protected:
  32. CChatView();           // protected constructor used by dynamic creation
  33. DECLARE_DYNCREATE(CChatView)
  34. // Attributes
  35. public:
  36. // Operations
  37. public:
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CChatView)
  41. protected:
  42. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. protected:
  46. virtual ~CChatView();
  47. #ifdef _DEBUG
  48. virtual void AssertValid() const;
  49. virtual void Dump(CDumpContext& dc) const;
  50. #endif
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CChatView)
  54. // NOTE - the ClassWizard will add and remove member functions here.
  55. //}}AFX_MSG
  56. DECLARE_MESSAGE_MAP()
  57. };
  58. /////////////////////////////////////////////////////////////////////////////
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_CHATVIEW_H__0F2E6AAC_F715_458A_8C66_6350D50A4C86__INCLUDED_)