Leaked source code of windows server 2003
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.

53 lines
1.2 KiB

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