PlatformDoc.h
上传用户:easylife05
上传日期:2007-02-14
资源大小:393k
文件大小:1k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. // PlatformDoc.h :  CPlatformDoc 类的接口
  2. //
  3. #pragma once
  4. //#include "commstruct.h"
  5. class CPlatformDoc : public CDocument
  6. {
  7. protected: // 仅从序列化创建
  8. CPlatformDoc();
  9. DECLARE_DYNCREATE(CPlatformDoc)
  10. // 属性
  11. public:
  12. //----------------------------------
  13. myGraph *m_GraphHead, *m_GraphTail;
  14. int m_countGraph;
  15. // 操作
  16. public:
  17. // 重写
  18. public:
  19. virtual BOOL OnNewDocument();
  20. virtual void Serialize(CArchive& ar);
  21. // 实现
  22. public:
  23. virtual ~CPlatformDoc();
  24. #ifdef _DEBUG
  25. virtual void AssertValid() const;
  26. virtual void Dump(CDumpContext& dc) const;
  27. #endif
  28. protected:
  29. // 生成的消息映射函数
  30. protected:
  31. DECLARE_MESSAGE_MAP()
  32. public:
  33. virtual void DeleteContents();
  34. // virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  35. // afx_msg void OnFileOpen();
  36. // afx_msg void OnFileOpen();
  37. };