home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / cluster / smbsmp / smbsmpex / basepage.inl < prev    next >
Encoding:
Text File  |  1997-07-29  |  1.3 KB  |  60 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //    Copyright (c) 1997 <company name>
  4. //
  5. //    Module Name:
  6. //        BasePage.inl
  7. //
  8. //    Abstract:
  9. //        Implementation of inline methods of the CBasePropertyPage class.
  10. //
  11. //    Author:
  12. //        <name> (<e-mail name>) Mmmm DD, 1997
  13. //
  14. //    Revision History:
  15. //
  16. //    Notes:
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19.  
  20. #ifndef _BASEPAGE_INL_
  21. #define _BASEPAGE_INL_
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // Include Files
  25. /////////////////////////////////////////////////////////////////////////////
  26.  
  27. #ifndef _BASEPAGE_H_
  28. #include "BasePage.h"
  29. #endif
  30.  
  31. /////////////////////////////////////////////////////////////////////////////
  32.  
  33. IWCWizardCallback * CBasePropertyPage::PiWizardCallback(void) const
  34. {
  35.     ASSERT(Peo() != NULL);
  36.     return Peo()->PiWizardCallback();
  37. }
  38.  
  39. BOOL CBasePropertyPage::BWizard(void) const
  40. {
  41.     ASSERT(Peo() != NULL);
  42.     return Peo()->BWizard();
  43. }
  44.  
  45. HCLUSTER CBasePropertyPage::Hcluster(void) const
  46. {
  47.     ASSERT(Peo() != NULL);
  48.     return Peo()->Hcluster();
  49. }
  50.  
  51. CLUADMEX_OBJECT_TYPE CBasePropertyPage::Cot(void) const
  52. {
  53.     ASSERT(Peo() != NULL);
  54.     return Peo()->Cot();
  55. }
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58.  
  59. #endif // _BASEPAGE_INL_
  60.