summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/ListenManyByMany/Base/LMBM_Test_Base.idl
blob: 050aee731a19b00508b45a1e60aa70bb2216ecd4 (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 LMBM_Test_Base.idl
 * @author Marcel Smit <msmit@remedy.nl>
 */

#ifndef LISTEN_MANY_BY_MANY_TEST_BASE_IDL
#define LISTEN_MANY_BY_MANY_TEST_BASE_IDL

#pragma ndds typesupport "Base/LMBM_Test_BaseSupport.h"
#pragma opendds typesupport "Base/LMBM_Test_BaseTypeSupportImpl.h"

#pragma DCPS_DATA_TYPE "ListenManyByManyTest"
#pragma DCPS_DATA_KEY "ListenManyByManyTest key"

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

#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
typedef sequence<ListenManyByManyTest> ListenManyByManyTestSeq;
#endif

#endif