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

struct FixedStructSizeTest {
  long one;
  long two;
};

typedef sequence<FixedStructSizeTest> FixedStructSizeTestSeq;

#endif