Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. FTMan
  5. File Name:
  6. FTDoc.h
  7. Abstract:
  8. The definition of class CFTDocument. It is the MFC document class for the FT Volume views
  9. Author:
  10. Cristian Teodorescu October 20, 1998
  11. Notes:
  12. Revision History:
  13. --*/
  14. /////////////////////////////////////////////////////////////////////////////
  15. #if !defined(AFX_FTDOC_H__B83E0001_6873_11D2_A297_00A0C9063765__INCLUDED_)
  16. #define AFX_FTDOC_H__B83E0001_6873_11D2_A297_00A0C9063765__INCLUDED_
  17. #if _MSC_VER > 1000
  18. #pragma once
  19. #endif // _MSC_VER > 1000
  20. class CFTDocument : public CDocument
  21. {
  22. protected: // create from serialization only
  23. CFTDocument();
  24. DECLARE_DYNCREATE(CFTDocument)
  25. // Attributes
  26. public:
  27. // Operations
  28. public:
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CFTDocument)
  32. public:
  33. virtual BOOL OnNewDocument();
  34. virtual void Serialize(CArchive& ar);
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. virtual ~CFTDocument();
  39. #ifdef _DEBUG
  40. virtual void AssertValid() const;
  41. virtual void Dump(CDumpContext& dc) const;
  42. #endif
  43. protected:
  44. // Generated message map functions
  45. protected:
  46. //{{AFX_MSG(CFTDocument)
  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_FTDOC_H__B83E0001_6873_11D2_A297_00A0C9063765__INCLUDED_)