summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Common/StatisticsHelper.h
blob: b82edcb91e39b666eab36422f2a7b4b97cdb12d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef STATISTICS_HELPER_H
#define STATISTICS_HELPER_H

#include "CSD_TP_Test_Export.h"
#include "tao/Basic_Types.h"
#include "ace/Containers_T.h"
#include "ace/Vector_T.h"
#include "ace/SString.h"

typedef ACE_Vector< CORBA::Long, 1000 > LongVector;
typedef ACE_Vector< ACE_CString, 1000 > StringVector;
typedef ACE_Array< CORBA::Long > LongArray;

extern CSD_TP_Test_Export
void swap ( CORBA::Long& x, CORBA::Long& y );

extern CSD_TP_Test_Export
void sort ( LongVector & vector );

#endif