Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_3547_Regression / Stock_Quoter_i.h
blob17f37c59924d0b1da9b3c01bae4fcf428912654e
1 #ifndef Stock_Quoter_i_h
2 #define Stock_Quoter_i_h
4 #include "Stock_QuoterS.h"
6 // This class provides the implementation for Stock_Quoter interface.
7 class Stock_Quoter_i : public virtual POA_Stock_Quoter
9 public:
10 Stock_Quoter_i (CORBA::ORB_ptr orb);
11 virtual ~Stock_Quoter_i ();
13 CORBA::Float get_quote (const char* stock_id);
15 virtual void shutdown ();
17 private:
18 /// Use an ORB reference to convert strings to objects and shutdown
19 /// the application.
20 CORBA::ORB_var orb_;
23 #endif /* Stock_Quoter_i_h */