summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/KeyedWriter/Base/Writer_Base.idl
blob: 525042673a8626629a5de269206f322cbebe501a (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
/**
 * @file Writer_Base.idl
 * @author Marcel Smit (msmit@remedy.nl)
 */

#ifndef WRITER_BASE_IDL
#define WRITER_BASE_IDL

#pragma ndds typesupport "Base/Writer_BaseSupport.h"
#pragma opendds typesupport "Base/Writer_BaseTypeSupportImpl.h"

#pragma DCPS_DATA_TYPE "WriterTest"
#pragma DCPS_DATA_KEY "WriterTest key"

struct WriterTest {
  string key; //@key
  long iteration;
};

#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
typedef sequence<WriterTest> WriterTestSeq;
#endif

#endif