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 / Encode / EncodeView.h < prev    next >
C/C++ Source or Header  |  2001-02-09  |  1KB  |  53 lines

  1. // EncodeView.h : CEncodeView クラスの宣言およびインターフェイスの定義をします。
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CEncodeView : public CView
  6. {
  7. protected: // シリアライズ機能のみから作成します。
  8.     CEncodeView();
  9.     DECLARE_DYNCREATE(CEncodeView)
  10.  
  11. // アトリビュート
  12. public:
  13.     CEncodeDoc* GetDocument();
  14.  
  15. // オペレーション
  16. public:
  17.  
  18. // オーバーライド
  19.     // ClassWizard は仮想関数を生成しオーバーライドします。
  20.     //{{AFX_VIRTUAL(CEncodeView)
  21.     public:
  22.     virtual void OnDraw(CDC* pDC);  // このビューを描画する際にオーバーライドされます。
  23.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24.     protected:
  25.     //}}AFX_VIRTUAL
  26.  
  27. // インプリメンテーション
  28. public:
  29.     virtual ~CEncodeView();
  30. #ifdef _DEBUG
  31.     virtual void AssertValid() const;
  32.     virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34.  
  35. protected:
  36.  
  37. // 生成されたメッセージ マップ関数
  38. protected:
  39.     //{{AFX_MSG(CEncodeView)
  40.         // メモ -  ClassWizard はこの位置にメンバ関数を追加または削除します。
  41.         //         この位置に生成されるコードを編集しないでください。
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. #ifndef _DEBUG  // EncodeView.cpp ファイルがデバッグ環境の時使用されます。
  47. inline CEncodeDoc* CEncodeView::GetDocument()
  48.    { return (CEncodeDoc*)m_pDocument; }
  49. #endif
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.  
  53.