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

#include "CSD_TP_Test_Export.h"
#include "tao/Basic_Types.h"
#include "ace/Array.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