Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_3547_Regression / Stock_Quoter_i.h
blob554f6985a8749f75836f274200fe2e5bf61ad3a9
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 (void);
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 */