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.

42 lines
1.1 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1999 - 1999
  6. //
  7. // File: todcondition.h
  8. //
  9. //--------------------------------------------------------------------------
  10. // TodCondition.h: interface for the CTodCondition class.
  11. //
  12. //////////////////////////////////////////////////////////////////////
  13. #if !defined(AFX_TODCONDITION_H__9F91767A_A693_11D1_BBEB_00C04FC31851__INCLUDED_)
  14. #define AFX_TODCONDITION_H__9F91767A_A693_11D1_BBEB_00C04FC31851__INCLUDED_
  15. #if _MSC_VER >= 1000
  16. #pragma once
  17. #endif // _MSC_VER >= 1000
  18. #include "atltmp.h"
  19. #include "Condition.h"
  20. class CTodCondition : public CCondition
  21. {
  22. public:
  23. CTodCondition(IIASAttributeInfo* pCondAttr,
  24. ATL::CString& strConditionText
  25. );
  26. CTodCondition(IIASAttributeInfo* pCondAttr);
  27. virtual ~CTodCondition();
  28. HRESULT Edit();
  29. virtual ATL::CString GetDisplayText();
  30. virtual WCHAR* GetConditionText();
  31. };
  32. #endif // !defined(AFX_TODCONDITION_H__9F91767A_A693_11D1_BBEB_00C04FC31851__INCLUDED_)