summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/FixedSizeStruct/StateConnector/Base/FSS_State_Base.idl
blob: d09fc6a68849f025c1ce1a4c47513d8478e40b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * @file FSS_State_Base.idl
 * @author Marcel Smit (msmit@remedy.nl)
 */

#ifndef FIXED_SIZE_STRUCT_STATE_BASE_IDL
#define FIXED_SIZE_STRUCT_STATE_BASE_IDL

#pragma ndds typesupport "Base/FSS_State_BaseSupport.h"
#pragma opendds typesupport "Base/FSS_State_BaseTypeSupportImpl.h"

#pragma DCPS_DATA_TYPE "FixedStructSizeTest"

struct FixedStructSizeTest {
  long one;
  long two;
};

#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
typedef sequence<FixedStructSizeTest> FixedStructSizeTestSeq;
#endif

#endif