This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/cplbexam/contain/wcldval.cpp

36 lines
772 B
C++

#include <wclist.h>
#include <iostream.h>
static void test1( void );
void data_val_prt( int data, void * str ) {
cout << (char *)str << "[" << data << "]\n";
}
void main() {
try {
test1();
} catch( ... ) {
cout << "we caught an unexpected exception\n";
}
cout.flush();
}
void test1 ( void ) {
WCValDList<int> list;
list.append( 2 );
list.append( 3 );
list.append( 4 );
list.insert( 1 );
list.append( 5 );
cout << "<value double list for int>\n";
list.forAll( data_val_prt, "" );
data_val_prt( list.find( 3 ), "<the fourth element>" );
data_val_prt( list.get( 2 ), "<the third element>" );
data_val_prt( list.get(), "<the first element>" );
list.clear();
cout.flush();
}