summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Common/StatisticsHelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/CSD_Strategy_Tests/TP_Common/StatisticsHelper.h')
-rw-r--r--TAO/tests/CSD_Strategy_Tests/TP_Common/StatisticsHelper.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tests/CSD_Strategy_Tests/TP_Common/StatisticsHelper.h b/TAO/tests/CSD_Strategy_Tests/TP_Common/StatisticsHelper.h
new file mode 100644
index 00000000000..7f26a4ae165
--- /dev/null
+++ b/TAO/tests/CSD_Strategy_Tests/TP_Common/StatisticsHelper.h
@@ -0,0 +1,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