FileChangeDoc.h
上传用户:lqt88888
上传日期:2009-12-14
资源大小:905k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // FileChangeDoc.h : interface of the CFileChangeDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_FILECHANGEDOC_H__70F54EAB_8984_11D4_BD73_000021479D21__INCLUDED_)
  5. #define AFX_FILECHANGEDOC_H__70F54EAB_8984_11D4_BD73_000021479D21__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include <Afxmt.h>
  10. #define FA_WRITTEN 1
  11. #define FA_FILELOST 2
  12. class CFileChangeDoc : public CDocument
  13. {
  14. protected: // create from serialization only
  15. CFileChangeDoc();
  16. DECLARE_DYNCREATE(CFileChangeDoc)
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CFileChangeDoc)
  24. public:
  25. virtual BOOL OnNewDocument();
  26. virtual void Serialize(CArchive& ar);
  27. virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  28. virtual void OnCloseDocument();
  29. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CFileChangeDoc();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. CEvent m_evStopWatch;
  40. void WatchStop();
  41. void WatchStart();
  42. virtual void OnFileAlarm(short nCause);
  43. static UINT FileChangeWatch(LPVOID lpParam);
  44. // Generated message map functions
  45. protected:
  46. //{{AFX_MSG(CFileChangeDoc)
  47. // NOTE - the ClassWizard will add and remove member functions here.
  48. //    DO NOT EDIT what you see in these blocks of generated code !
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_FILECHANGEDOC_H__70F54EAB_8984_11D4_BD73_000021479D21__INCLUDED_)