mirror of
https://github.com/ENSL/NS.git
synced 2024-12-11 21:31:04 +00:00
27 lines
656 B
C++
27 lines
656 B
C++
|
// STLport regression testsuite component.
|
||
|
// To compile as a separate example, please #define MAIN.
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <deque>
|
||
|
#include <algorithm>
|
||
|
|
||
|
#ifdef MAIN
|
||
|
#define finsert1_test main
|
||
|
#endif
|
||
|
|
||
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
||
|
using namespace std;
|
||
|
#endif
|
||
|
int finsert1_test(int, char**)
|
||
|
{
|
||
|
cout<<"Results of finsert1_test:"<<endl;
|
||
|
char* array [] = { "laurie", "jennifer", "leisa" };
|
||
|
|
||
|
deque<char*> names;
|
||
|
copy(array, array + 3, front_insert_iterator<deque <char*> >(names));
|
||
|
deque<char*>::iterator i;
|
||
|
for(i = names.begin(); i != names.end(); i++)
|
||
|
cout << *i << endl;
|
||
|
return 0;
|
||
|
}
|