ns/releases/valve/source/stlport/test/regression/vec3.cpp
puzl f44f16d59a made a copy
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@168 67975925-1194-0748-b3d5-c16f83f1a3a1
2005-06-08 18:52:38 +00:00

32 lines
887 B
C++

// STLport regression testsuite component.
// To compile as a separate example, please #define MAIN.
#include <iostream>
#include <vector>
#include <algorithm>
#ifdef MAIN
#define vec3_test main
#endif
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
using namespace std;
#endif
int vec3_test(int, char**)
{
cout<<"Results of vec3_test:"<<endl;
# ifdef __STLPORT_VERSION
typedef __vector__<char, allocator<char> > vec_type;
# else
typedef vector<char> vec_type;
# endif
vec_type v1; // Empty vector of characters.
v1.push_back('h');
v1.push_back('i');
cout << "v1 = " << v1[0] << v1[1] << endl;
vec_type v2(v1.begin(), v1.end());
v2[1] = 'o'; // Replace second character.
cout << "v2 = " << v2[0] << v2[1] << endl;
cout << "(v1 == v2) = " <<(v1 == v2) << endl;
cout << "(v1 < v2) = " <<(v1 < v2) << endl;
return 0;
}