home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 July / VPR0107B.BIN / DRIVER / CANOPUS / MVR32 / mvr32.exe / data1.cab / Development_Kit / Vc / Samples / Multi / MainFrm.h < prev    next >
C/C++ Source or Header  |  2001-02-09  |  1KB  |  54 lines

  1. // MainFrm.h : CMainFrame クラスの宣言およびインターフェイスの定義をします。
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MAINFRM_H__1318BB78_E5BF_11D3_A35D_00A02450E6BF__INCLUDED_)
  6. #define AFX_MAINFRM_H__1318BB78_E5BF_11D3_A35D_00A02450E6BF__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. class CMainFrame : public CMDIFrameWnd
  13. {
  14.     DECLARE_DYNAMIC(CMainFrame)
  15. public:
  16.     CMainFrame();
  17.  
  18. // アトリビュート
  19. public:
  20.  
  21. // オペレーション
  22. public:
  23.  
  24. // オーバーライド
  25.     // ClassWizard は仮想関数のオーバーライドを生成します。
  26.     //{{AFX_VIRTUAL(CMainFrame)
  27.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28.     //}}AFX_VIRTUAL
  29.  
  30. // インプリメンテーション
  31. public:
  32.     virtual ~CMainFrame();
  33. #ifdef _DEBUG
  34.     virtual void AssertValid() const;
  35.     virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37.  
  38. // 生成されたメッセージ マップ関数
  39. protected:
  40.     //{{AFX_MSG(CMainFrame)
  41.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  42.     afx_msg void OnSize(UINT nType, int cx, int cy);
  43.     afx_msg void OnMove(int x, int y);
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ は前行の直前に追加の宣言を挿入します。
  52.  
  53. #endif // !defined(AFX_MAINFRM_H__1318BB78_E5BF_11D3_A35D_00A02450E6BF__INCLUDED_)
  54.