Source code of Windows XP (NT5)
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.

69 lines
1.5 KiB

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. #if !defined(AFX_QUERYSHEET_H__D02204D1_6F1E_11D3_BD3F_0080C8E60955__INCLUDED_)
  8. #define AFX_QUERYSHEET_H__D02204D1_6F1E_11D3_BD3F_0080C8E60955__INCLUDED_
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12. // QuerySheet.h : header file
  13. //
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CQuerySheet
  16. class CQuerySheet : public CPropertySheet
  17. {
  18. DECLARE_DYNAMIC(CQuerySheet)
  19. // Construction
  20. public:
  21. CQuerySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  22. CQuerySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  23. // Attributes
  24. public:
  25. IWbemServices *m_pNamespace;
  26. CString m_strQuery;
  27. CString m_strClass;
  28. CStringList m_listColums;
  29. BOOL m_bColsNeeded;
  30. // Operations
  31. public:
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CQuerySheet)
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. virtual ~CQuerySheet();
  39. protected:
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CQuerySheet)
  43. // NOTE - the ClassWizard will add and remove member functions here.
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_QUERYSHEET_H__D02204D1_6F1E_11D3_BD3F_0080C8E60955__INCLUDED_)