Definition at line 12 of file Test.h. References ApplyOrder(). 00013 { 00014 double data1[5] = {2.1, 1.1, 3.1, 0.1}; 00015 int order[5] = {2, 1, 3, 0}; 00016 std::string data2[5] = {"two", "one", "three", "zero"}; 00017 00018 ApplyOrder(data1, order, 4); 00019 ApplyOrder(data2, order, 4); 00020 for(int i=0 ; i<4 ; ++i) 00021 std::cout << data1[i] << "\t" << data2[i] << std::endl; 00022 }
Here is the call graph for this function:
|