home *** CD-ROM | disk | FTP | other *** search
/ C/C++ User's Journal & Wi…eveloper's Journal Tools / C-C__Users_Journal_and_Windows_Developers_Journal_Tools_1997.iso / stingray / griddoc2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-27  |  1.4 KB  |  56 lines

  1. // griddoc2.h : header file
  2. //
  3.  
  4. // This is a part of the Objective Grid C++ Library.
  5. // Copyright (C) 1995,1996 ClassWorks, Stefan Hoenig.
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to
  9. // the Objective Grid Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding
  12. // the Objective Grid product.
  13. //
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CSampleDocument2 document
  17.  
  18. class CGXGridParam;
  19.  
  20. class CSampleDocument2 : public CDocument
  21. {
  22. protected:
  23.     CSampleDocument2();           // protected constructor used by dynamic creation
  24.     DECLARE_DYNCREATE(CSampleDocument2)
  25.  
  26. // Attributes
  27. public:
  28.     CGXGridParam* m_pParam;
  29.  
  30. // Operations
  31. public:
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CSampleDocument2)
  36.     protected:
  37.     virtual BOOL OnNewDocument();
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. public:
  42.     virtual ~CSampleDocument2();
  43.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  44. #ifdef _DEBUG
  45.     virtual void AssertValid() const;
  46.     virtual void Dump(CDumpContext& dc) const;
  47. #endif
  48.  
  49.     // Generated message map functions
  50. protected:
  51.     //{{AFX_MSG(CSampleDocument2)
  52.         // NOTE - the ClassWizard will add and remove member functions here.
  53.     //}}AFX_MSG
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.