mirror of
https://github.com/unknownworlds/NS.git
synced 2024-12-11 21:31:41 +00:00
29 lines
656 B
C++
29 lines
656 B
C++
|
// STLport regression testsuite component.
|
||
|
// To compile as a separate example, please #define MAIN.
|
||
|
|
||
|
#include <vector>
|
||
|
#include <algorithm>
|
||
|
#include <iostream>
|
||
|
#include <iterator>
|
||
|
|
||
|
#ifdef MAIN
|
||
|
#define copy3_test main
|
||
|
#endif
|
||
|
|
||
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
||
|
using namespace std;
|
||
|
#endif
|
||
|
int copy3_test(int, char**)
|
||
|
{
|
||
|
cout<<"Results of copy3_test:"<<endl;
|
||
|
vector <int> v1(10);
|
||
|
for(int i = 0; i < v1.size(); i++)
|
||
|
v1[i] = i;
|
||
|
vector <int> v2(10);
|
||
|
copy(v1.begin(), v1.end(), v2.begin());
|
||
|
ostream_iterator<int> iter(cout, " ");
|
||
|
copy(v2.begin(), v2.end(), iter);
|
||
|
cout << endl;
|
||
|
return 0;
|
||
|
}
|