summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/examples/Quoter/Base/Quoter_Base.idl
blob: 750908a015d9fb02ddf3e554a53968ca507105dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$

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

#ifndef QUOTER_BASE_IDL
#define QUOTER_BASE_IDL

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

#endif