home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
cset21v1.zip
/
IBMCPP
/
IBMCLASS
/
IAKSBAG.H
< prev
next >
Wrap
Text File
|
1993-09-22
|
2KB
|
40 lines
/*******************************************************************************
* *
* COPYRIGHT: *
* IBM C/C++ Tools Version 2.01 - Collection Class Library *
* Licensed Materials - Property of IBM *
* (C) Copyright IBM Corporation 1992, 1993 *
* All Rights Reserved *
* US Government Users Restricted Rights - Use, duplication, or disclosure *
* restricted by GSA ADP Schedule Contract with IBM Corp. *
* *
*******************************************************************************/
#ifndef _IAKSBAG_H
#define _IAKSBAG_H
#include <iglobals.h>
#include <icursor.h>
#include <iaksrt.h>
template < class Element, class Key >
class IAKeySortedBag :
public virtual IAKeySortedCollection < Element, Key > {
public:
virtual long compare (IAKeySortedBag < Element, Key > const&,
long (*comparisonFunction)
(Element const&,
Element const&)) const;
protected:
};
#ifdef __IBMCPP__
#ifndef __TEMPINC__
#include <iaksbag.c>
#endif
#endif
#endif