Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / docs / tutorials / Quoter / Simple / Impl-Repo / Stock_i.h
blob26896bb685a1746875e43415fa1b811953147d49
2 #ifndef TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_I_H
3 #define TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_I_H
5 #include "QuoterS.h"
6 #include <string>
8 class Quoter_Stock_i : public POA_Quoter::Stock {
9 public:
10 Quoter_Stock_i (const char *symbol,
11 const char *full_name,
12 CORBA::Double price);
14 char *symbol ();
15 char *full_name ();
16 CORBA::Double price ();
18 private:
19 std::string symbol_;
20 std::string full_name_;
21 CORBA::Double price_;
24 #endif /* TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_I_H */