summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/Getter/Base/Getter_Test_Base.idl
blob: 6980c9e4bb5df5232153951661627a77da89a267 (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
26
27
28
29
30
31
32
33
34
35
36
// $Id$

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

#ifndef GETTER_TEST_BASE_IDL
#define GETTER_TEST_BASE_IDL

#pragma ndds typesupport "Base/Getter_Test_BaseSupport.h"
#pragma opendds typesupport "Base/Getter_Test_BaseTypeSupportImpl.h"

#pragma DCPS_DATA_TYPE "GetterTest"

struct GetterTest {
  string key;
  long iteration;
};

#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
typedef sequence<GetterTest> GetterTestSeq;
#endif

#pragma DCPS_DATA_TYPE "GetterFixed"

struct GetterFixed {
  long key;
  long iteration;
};

#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
typedef sequence<GetterFixed> GetterFixedSeq;
#endif

#endif /* GETTER_TEST_BASE_IDL */