MDIDOC.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // MDIDoc.h : interface of the CMDIBindDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "rdc.h"
  13. class CMDIBindDoc : public CDocument
  14. {
  15. protected: // create from serialization only
  16. CMDIBindDoc();
  17. DECLARE_DYNCREATE(CMDIBindDoc)
  18. // Attributes
  19. public:
  20. CRdc* m_pRDC;   // the RDC the control is bound to
  21. CString m_boundCol; // the column the control is bound to (MsMask only)
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CMDIBindDoc)
  27. public:
  28. virtual BOOL OnNewDocument();
  29. virtual void Serialize(CArchive& ar);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CMDIBindDoc();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CMDIBindDoc)
  42. // NOTE - the ClassWizard will add and remove member functions here.
  43. //    DO NOT EDIT what you see in these blocks of generated code !
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////