summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/Derived/Derived.idl
blob: 66d77afd91ec62faab69089da4f2581290ab1dad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// $Id$

#ifndef DERIVED_IDL
#define DERIVED_IDL

#pragma ndds typesupport "DerivedSupport.h"
#pragma opendds typesupport "DerivedTypeSupportImpl.h"

#pragma DCPS_DATA_TYPE "DerivedType"
#pragma DCPS_DATA_KEY "DerivedType value"

struct DerivedType {
  string value; //@key
};

typedef sequence<DerivedType> DerivedTypeSeq;

#endif