summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/examples/Quoter/Base/Quoter_Base.idl
blob: 1b0dc464d6d3d3bf29f43326de231723a3c00c69 (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
27
28
29
// $Id$

/**
 * @file Quoter_Base.idl
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 */

#ifndef QUOTER_BASE_IDL
#define QUOTER_BASE_IDL

#pragma ndds typesupport "Base/Quoter_BaseSupport.h"
#pragma opendds typesupport "Base/Quoter_BaseTypeSupportC.h"

#pragma DCPS_DATA_TYPE "Quoter::Stock_Info"
#pragma DCPS_DATA_KEY "Quoter::Stock_Info symbol"

module Quoter
{
  struct Stock_Info
  {
    unsigned long low;
    unsigned long high;
    unsigned long current;
    string symbol; //@key
  };
  typedef sequence<Stock_Info> Stock_InfoSeq;
};

#endif