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.

59 lines
1.3 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (C) 1998-2000 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // BasePage.inl
  7. //
  8. // Description:
  9. // Implementation of inline methods of the CBasePropertyPage class.
  10. //
  11. // Maintained By:
  12. // Galen Barbee (GalenB) Mmmm DD, 1998
  13. //
  14. // Revision History:
  15. //
  16. // Notes:
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. #ifndef _BASEPAGE_INL_
  20. #define _BASEPAGE_INL_
  21. /////////////////////////////////////////////////////////////////////////////
  22. // Include Files
  23. /////////////////////////////////////////////////////////////////////////////
  24. #ifndef _BASEPAGE_H_
  25. #include "BasePage.h"
  26. #endif
  27. /////////////////////////////////////////////////////////////////////////////
  28. IWCWizardCallback * CBasePropertyPage::PiWizardCallback(void) const
  29. {
  30. ASSERT(Peo() != NULL);
  31. return Peo()->PiWizardCallback();
  32. }
  33. BOOL CBasePropertyPage::BWizard(void) const
  34. {
  35. ASSERT(Peo() != NULL);
  36. return Peo()->BWizard();
  37. }
  38. HCLUSTER CBasePropertyPage::Hcluster(void) const
  39. {
  40. ASSERT(Peo() != NULL);
  41. return Peo()->Hcluster();
  42. }
  43. CLUADMEX_OBJECT_TYPE CBasePropertyPage::Cot(void) const
  44. {
  45. ASSERT(Peo() != NULL);
  46. return Peo()->Cot();
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. #endif // _BASEPAGE_INL_