home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- * *
- * IBM(R) VisualAge(TM) for C++ for Windows(R), Version 3.5 *
- * *
- * PID: 5622-880 *
- * - Licensed Material - Program-Property of IBM *
- * (C) Copyright IBM Corp. 1991, 1995 - All Right Reserved. *
- * *
- * US Government Users Restricted Rights - Use, duplication or *
- * disclosure restricted by GSA ADP Schedule Contract with IBM Corp. *
- * *
- * VisualAge, and IBM are trademarks or registered trademarks of *
- * International Business Machines Corporation. *
- * Windows is a registered trademark of Microsoft Corporation. *
- * *
- **********************************************************************/
-
- #ifndef _IIRELDIL_H
- #define _IIRELDIL_H
-
- #include <iirelkb.h>
-
-
- #include <iikbdil.h>
-
-
- #pragma info (nocls, nocnd, nocns, nocnv, noext, nognr, novft)
- #pragma pack (4)
-
- #pragma SOMAsDefault (off)
-
- typedef IRelationOnKeyBagImpl
- <IKeyBagAsDilTableImpl> IRelationAsDilTableImpl;
-
- template <class Element, class _Key,
- class ElementOps, class Implementation>
- class IRelationAsDilTableOps :
- public IARelationOnKeyBagOps
- <IKeyBagAsDilTableImpl> {
-
- typedef IRelationAsDilTableOps
- <Element, _Key, ElementOps, Implementation> Self;
-
- typedef IKeyBagAsDilTableOps
- <Element, _Key,
- ElementOps, IKeyBagAsDilTableImpl> Base;
-
- public:
-
- typedef Implementation ImplType;
-
- typedef Element ElementType;
-
- typedef _Key KeyType;
-
- IRelationAsDilTableOps
- (INumber);
-
- IRelationAsDilTableOps
- (INumber, void*);
-
- IRelationAsDilTableOps
- (IRelationAsDilTableOps
- <Element, _Key,
- ElementOps, Implementation> const&);
-
- ~IRelationAsDilTableOps
- ();
-
- IACollectionImpl*
- Clone () const;
-
- IBoolean EqualElements (void const*, void const*) const;
-
- TStream& operator<<= (TStream&);
-
- TStream& operator>>= (TStream&) const;
-
- operator IKeyBagAsDilTableImpl&
- ();
-
- operator Implementation*
- ();
-
-
- protected:
-
- private:
-
- ElementOps
- ivElementOps;
-
- Base ivBase;
-
- Implementation
- ivImpl;
-
-
- };
-
- #pragma SOMAsDefault (pop)
-
- #if ! defined (__TEMPINC__)
- #include <iireldil.c>
- #endif
-
- #pragma info (restore)
- #pragma pack ()
-
- #endif
-