mirror of
https://github.com/ENSL/NS.git
synced 2024-12-04 10:12:15 +00:00
7b18f64309
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@16 67975925-1194-0748-b3d5-c16f83f1a3a1
33 lines
766 B
C++
33 lines
766 B
C++
// STLport regression testsuite component.
|
|
// To compile as a separate example, please #define MAIN.
|
|
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
#include <iterator>
|
|
#include <functional>
|
|
|
|
#ifdef MAIN
|
|
#define ptrbinf1_test main
|
|
#endif
|
|
static int sum(int x_, int y_)
|
|
{
|
|
return x_ + y_;
|
|
}
|
|
|
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
|
using namespace std;
|
|
#endif
|
|
int ptrbinf1_test(int, char**)
|
|
{
|
|
cout<<"Results of ptrbinf1_test:"<<endl;
|
|
|
|
int input1 [4] = { 7, 2, 3, 5 };
|
|
int input2 [4] = { 1, 5, 5, 8 };
|
|
|
|
int output [4];
|
|
transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output,
|
|
pointer_to_binary_function<int, int, int>(sum));
|
|
for(int i = 0; i < 4; i++)
|
|
cout << output[i] << endl;
|
|
return 0;
|
|
}
|