home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
BAGS.PAK
/
IBAG.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
1KB
|
56 lines
// ---------------------------------------------------------------------------
// Copyright (C) 1994 Borland International
// ibag.cpp
// Must link with myclass.cpp.
// ---------------------------------------------------------------------------
#include <classlib/bags.h>
#include <iostream.h>
#include <strstrea.h>
#include "../myclass.h"
typedef TIBagAsVector<MyClass> ContainerType;
typedef TIBagAsVectorIterator<MyClass> IteratorType;
const int MaxItems=6;
void ForEachCallBack(MyClass& mc, void* s)
{
cout << (char*)s << mc << endl;
}
void AddItems(ContainerType& container, int numItems)
{
for( int i=numItems; i>0; i-- )
{
char buf[80];
ostrstream str( buf, sizeof(buf) );
str << i << " hello" << ends;
container.Add( new MyClass(buf) );
}
}
void UseForwardIterator(ContainerType& container)
{
IteratorType iterator(container);
while( iterator )
{
cout << *iterator.Current() << endl;
iterator++;
}
}
int main()
{
ContainerType container(MaxItems);
AddItems(container, MaxItems);
cout << "--- Starting ForEach" << endl;
container.ForEach(ForEachCallBack, (void*)"FE ");
cout << "--- Starting Iterator (forward)" << endl;
UseForwardIterator(container);
return 0;
}