home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / samples / c08 / querydef / qdefdoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.0 KB  |  45 lines

  1. // QueryDefDoc.h : interface of the CQueryDefDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CQueryDefDoc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     CQueryDefDoc();
  9.     DECLARE_DYNCREATE(CQueryDefDoc)
  10.  
  11. // Attributes
  12. public:
  13.     CQueryDefSet m_queryDefSet;
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Overrides
  19.     // ClassWizard generated virtual function overrides
  20.     //{{AFX_VIRTUAL(CQueryDefDoc)
  21.     public:
  22.     virtual BOOL OnNewDocument();
  23.     //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. public:
  27.     virtual ~CQueryDefDoc();
  28. #ifdef _DEBUG
  29.     virtual void AssertValid() const;
  30.     virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32.  
  33. protected:
  34.  
  35. // Generated message map functions
  36. protected:
  37.     //{{AFX_MSG(CQueryDefDoc)
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code !
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.