summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/TwoTopics/Base/TwoTopics_Base.idl
blob: 3a09134fd82452f27ca73a4f2875c223c8bf30d7 (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 TwoTopics_Base.idl
 * @author Marcel Smit <msmit@remedy.nl>
 */

#ifndef TWOTOPICS_BASE_IDL
#define TWOTOPICS_BASE_IDL

#pragma ndds typesupport "Base/TwoTopics_BaseSupport.h"
#pragma opendds typesupport "Base/TwoTopics_BaseTypeSupportImpl.h"

struct HelloTopic {
  string hello; //@key
  long iteration;
};
typedef sequence<HelloTopic> HelloTopicSeq;

struct GoodbyeTopic {
  string goodbye; //@key
  long iteration;
};
typedef sequence<GoodbyeTopic> GoodbyeTopicSeq;

#endif