summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/examples/Large_Deployment/Common/Common.idl
blob: f1228b5852b9550ca377cc614e0ef0d78f7324f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef LARGE_COMMON_IDL
#define LARGE_COMMON_IDL

#pragma ndds typesupport "Common/CommonSupport.h"
#pragma opendds typesupport "Common/CommonTypeSupportImpl.h"

#pragma DCPS_DATA_TYPE "LargeType"
#pragma DCPS_DATA_KEY "LargeType value"

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

#if defined DDS4CCM_NEEDS_SEQUENCES_DEFINED
typedef sequence<LargeType> LargeTypeSeq;
#endif

#endif