home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional Developers Kit 1992 November
/
Disc01
/
Disc01.mdf
/
runnable
/
ibmc
/
ibmclass
/
iiter.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-10-26
|
332 b
|
20 lines
/* Copyright (c) IBM Corp. 1992 */
#ifndef _IITER_H
#define _IITER_H
#include <iglobals.h>
template < class Element >
class IIterator {
public:
virtual Boolean applyTo (Element&) = 0;
};
template < class Element >
class IConstantIterator {
public:
virtual Boolean applyTo (Element const&) = 0;
};
#endif