home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / imcllct.inl < prev    next >
Encoding:
Text File  |  1996-02-22  |  1.6 KB  |  49 lines

  1. /**********************************************************************
  2. *                                                                     *
  3. *  IBM(R) VisualAge(TM) for C++ for Windows(R), Version 3.5           *
  4. *                                                                     *
  5. *  PID: 5622-880                                                      *
  6. *  - Licensed Material - Program-Property of IBM                      *
  7. *  (C) Copyright IBM Corp. 1991, 1995 - All Right Reserved.           *
  8. *                                                                     *
  9. *  US Government Users Restricted Rights - Use, duplication or        *
  10. *  disclosure restricted by GSA ADP Schedule Contract with IBM Corp.  *
  11. *                                                                     *
  12. *  VisualAge, and IBM are trademarks or registered trademarks of      *
  13. *  International Business Machines Corporation.                       *
  14. *  Windows is a registered trademark of Microsoft Corporation.        *
  15. *                                                                     *
  16. **********************************************************************/
  17.  
  18. // ---------------
  19. // IMetaCollection
  20. // ---------------
  21.  
  22. // protected members
  23.  
  24. inline
  25. IMetaCollection::
  26. IMetaCollection ()
  27. : ivImpl (0)
  28. {
  29. }
  30.  
  31. inline
  32. IMetaCollection::
  33. IMetaCollection (IMetaCollection const&)
  34. : ivImpl (0)
  35. {
  36. }
  37.  
  38. inline void*
  39. IMetaCollection::
  40. CheckPointer (void* p)
  41. { return IACollectionImpl::CheckPointer (p);
  42. }
  43.  
  44. inline IACollectionImpl&
  45. IMetaCollection::
  46. ImplOf (IMetaCollection const& collection)
  47. { return *(IACollectionImpl*)collection.ivImpl;
  48. }
  49.