summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2560_Regression/Stock_i.h
blob: bab95d967442394740a618aa17705c8ae94ea912 (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
30
31
32
33
34
35
36
37
38
39
40
41
//
// $Id$
//

#ifndef TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_I_H
#define TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_I_H

#include "QuoterS.h"
#include <string>

class Quoter_Stock_i : public POA_Quoter::Stock {
public:
  Quoter_Stock_i (const char *symbol,
                  const char *full_name,
                  CORBA::Double price);

  char *symbol ();
  char *full_name ();
  CORBA::Double price ();
  Quoter::Stock::StockHistory * history ();

  static void set_default_POA ( PortableServer::POA_ptr poa )
  {
    Quoter_Stock_i::_poa = PortableServer::POA::_duplicate (poa);
  }
  virtual PortableServer::POA_ptr _default_POA ()
  {
    return PortableServer::POA::_duplicate (Quoter_Stock_i::_poa.in ());
  }

private:
  std::string symbol_;
  std::string full_name_;
  CORBA::Double price_;

  static PortableServer::POA_var _poa ;
};

#endif /* TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_I_H */