summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/State_Connection_Test/Base/State_Connection_Test_Base.idl
blob: 2bf9df0aa8a2b38c1edc01af1615694f68989ed2 (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
/**
 * @file State_Connection_Test_Base.idl
 * @author Marcel Smit (msmit@remedy.nl)
 */

#ifndef STATE_CONNECTION_TEST_BASE_IDL
#define STATE_CONNECTION_TEST_BASE_IDL

#pragma ndds typesupport "Base/State_Connection_Test_BaseSupport.h"
#pragma opendds typesupport "Base/State_Connection_Test_BaseTypeSupportImpl.h"

#pragma DCPS_DATA_TYPE "State_ConnectionTest"
#pragma DCPS_DATA_KEY "State_ConnectionTest key"

struct State_ConnectionTest {
  string key; //@key
  long iteration;
};

#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
typedef sequence<State_ConnectionTest> State_ConnectionTestSeq;
#endif

#endif