summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/FixedSizeStruct/EventConnector/Base/FSS_Event_Base.idl
blob: 6ec51c89495a2f355f2df19a2cb77528d01a0775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $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;
};

typedef sequence<FixedStructSizeTest> FixedStructSizeTestSeq;

#endif