summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/Updater/Base/Updater_Base.idl
blob: e2f354be16780c9dbde8f7b669cdd5175b18c858 (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
// $Id$

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

#ifndef UPDATER_BASE_IDL
#define UPDATER_BASE_IDL

#pragma ndds typesupport "Base/Updater_BaseSupport.h"
#pragma opendds typesupport "Base/Updater_BaseTypeSupportImpl.h"

#pragma DCPS_DATA_TYPE "TestTopic"
#pragma DCPS_DATA_KEY "TestTopic key"

struct TestTopic {
  string key; //@key
  long x;
};

#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
typedef sequence<TestTopic> TestTopicSeq;
#endif

#endif