home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / iiaks.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  2.0 KB  |  65 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 _IIAKS_H
  19. #define _IIAKS_H
  20.  
  21. #include <iiacllct.h>
  22.  
  23. #pragma info (nocls, nocnd, nocns, nocnv, noext, nognr, novft)
  24. #pragma pack (4)
  25.  
  26. #pragma SOMAsDefault (off)
  27.  
  28. class IAKeySetImpl : public IACollectionImpl {
  29. public:
  30.  
  31.           ~IAKeySetImpl
  32.                             ();
  33.  
  34. protected:
  35.  
  36.            IAKeySetImpl
  37.                             (Ops&);
  38.  
  39.   IBoolean LocateNextElementWithKey
  40.                             (void const*, ICursorImpl&) const;
  41.  
  42.   INumber  NumberOfDifferentKeys
  43.                             () const;
  44.  
  45.   INumber  NumberOfElementsWithKey
  46.                             (void const*) const;
  47.  
  48.   INumber  RemoveAllElementsWithKey
  49.                             (void const*);
  50.  
  51.   IBoolean SetToNextWithDifferentKey
  52.                             (ICursorImpl&) const;
  53.  
  54. private:
  55.  
  56.  
  57. };
  58.  
  59. #pragma SOMAsDefault (pop)
  60.  
  61. #pragma info (restore)
  62. #pragma pack ()
  63.  
  64. #endif
  65.