summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/performance-tests/Throughput/Base/Throughput_Base.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/dds4ccm/performance-tests/Throughput/Base/Throughput_Base.idl')
-rw-r--r--CIAO/connectors/dds4ccm/performance-tests/Throughput/Base/Throughput_Base.idl49
1 files changed, 0 insertions, 49 deletions
diff --git a/CIAO/connectors/dds4ccm/performance-tests/Throughput/Base/Throughput_Base.idl b/CIAO/connectors/dds4ccm/performance-tests/Throughput/Base/Throughput_Base.idl
deleted file mode 100644
index 45a19c666d6..00000000000
--- a/CIAO/connectors/dds4ccm/performance-tests/Throughput/Base/Throughput_Base.idl
+++ /dev/null
@@ -1,49 +0,0 @@
-/**
- * @file Throughput_Base.idl
- * @author Marijke Hengstmengel (mhengstmengel@remedy.nl)
- */
-
-#ifndef THROUGHPUT_BASE_IDL
-#define THROUGHPUT_BASE_IDL
-
-#pragma ndds typesupport "Base/Throughput_BaseSupport.h"
-#pragma opendds typesupport "Base/Throughput_BaseTypeSupportImpl.h"
-
-const short MAX_DATA_SEQUENCE_LENGTH = 8192;
-
-typedef enum ThroughputCommandKind
-{
- THROUGHPUT_COMMAND_IDLE,
- THROUGHPUT_COMMAND_START,
- THROUGHPUT_COMMAND_COMPLETE
-} CommandKind;
-
-typedef sequence<octet, MAX_DATA_SEQUENCE_LENGTH> OctetSeq;
-
-#pragma DCPS_DATA_TYPE "ThroughputTest"
-
-struct ThroughputTest {
- long key;
- unsigned long long seq_num;
- OctetSeq data;
- };
-
-#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
-typedef sequence<ThroughputTest> ThroughputTestSeq;
-#endif
-
-#pragma DCPS_DATA_TYPE "ThroughputCommand"
-
-struct ThroughputCommand
-{
- CommandKind command;
- unsigned long data_length;
- unsigned long long current_publisher_effort;
- unsigned long long final_publisher_effort;
-};
-
-#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
-typedef sequence<ThroughputCommand> ThroughputCommandSeq;
-#endif
-
-#endif