summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/FixedSizeStruct/EventConnector/Base/FSS_Event_Base.idl
blob: e94aa7d5c463a8f642a6f7384fcdf8c3c7697915 (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
25
// $Id$

/**
 * @file FSS_Event_Base.idl
 * @author Marcel Smit (msmit@remedy.nl)
 */

#ifndef FIXED_SIZE_STRUCT_EVENT_BASE_IDL
#define FIXED_SIZE_STRUCT_EVENT_BASE_IDL

#pragma ndds typesupport "Base/FSS_Event_BaseSupport.h"
#pragma opendds typesupport "Base/FSS_Event_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