home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / iivmwt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  1.8 KB  |  58 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. #ifndef _IIVMWT_H
  19. #define _IIVMWT_H
  20.  
  21. #include <iimwt.h>
  22.  
  23. #pragma SOMAsDefault (off)
  24.  
  25. #pragma info (nocls, nocnd, nocns, nocnv, noext, nognr, novft)
  26. #pragma pack (4)
  27.  
  28. template <class VInherited>
  29. class IVMultiwayTreeImpl : public VInherited {
  30. public:
  31.  
  32.   typedef  VInherited::Ops Ops;
  33.  
  34.            IVMultiwayTreeImpl
  35.                             (Ops&, INumber);
  36.  
  37.            IVMultiwayTreeImpl
  38.                             (Ops&, IVMultiwayTreeImpl
  39.                                     <VInherited> const&);
  40.  
  41. protected:
  42.  
  43. private:
  44.  
  45.  
  46. };
  47.  
  48. #pragma SOMAsDefault (pop)
  49.  
  50. #if ! defined (__TEMPINC__)
  51. #include <iivmwt.c>
  52. #endif
  53.  
  54. #pragma info (restore)
  55. #pragma pack ()
  56.  
  57. #endif
  58.