WaveEditDoc.h
上传用户:samlee1007
上传日期:2007-01-02
资源大小:123k
文件大小:2k
源码类别:

文件操作

开发平台:

Visual C++

  1. // WaveEditDoc.h : interface of the CWaveEditDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_WAVEEDITDOC_H__618031B0_6A68_11D2_B4AD_DEC1CAFE5B54__INCLUDED_)
  5. #define AFX_WAVEEDITDOC_H__618031B0_6A68_11D2_B4AD_DEC1CAFE5B54__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. class CWaveEditDoc : public CDocument
  10. {
  11. friend class CWaveEditView;
  12. protected: // create from serialization only
  13. CWaveEditDoc();
  14. DECLARE_DYNCREATE(CWaveEditDoc)
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CWaveEditDoc)
  22. public:
  23. virtual BOOL OnNewDocument();
  24. virtual void Serialize(CArchive& ar);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. BOOL m_bSvrTimerStopped;
  29. BOOL m_bAppClosed;
  30. virtual ~CWaveEditDoc();
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. protected:
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CWaveEditDoc)
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. // Generated OLE dispatch map functions
  42. //{{AFX_DISPATCH(CWaveEditDoc)
  43. afx_msg void ShowApp();
  44. afx_msg void HideApp();
  45. afx_msg void ShowWindow();
  46. afx_msg void SetCursor();
  47. afx_msg void SetPlay();
  48. afx_msg void SetPause();
  49. afx_msg void SetStop();
  50. afx_msg BOOL IsWaveEnd();
  51. //}}AFX_DISPATCH
  52. DECLARE_DISPATCH_MAP()
  53. DECLARE_INTERFACE_MAP()
  54. };
  55. /////////////////////////////////////////////////////////////////////////////
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_WAVEEDITDOC_H__618031B0_6A68_11D2_B4AD_DEC1CAFE5B54__INCLUDED_)