Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / examples / LoadBalancing / StockFactory.h
blob7cdf0431a686e4bd8b6ba14d5fd7e0520723a8ac
2 #ifndef STOCKFACTORY_H
3 #define STOCKFACTORY_H
5 #include "TestS.h"
6 #include "Stock.h"
8 class StockFactory
9 : public POA_Test::StockFactory
11 public:
12 StockFactory (CORBA::ORB_ptr orb, int number);
14 Test::Stock_ptr get_stock (const char *symbol);
16 virtual void shutdown ();
18 private:
19 CORBA::ORB_var orb_;
20 Stock rhat_;
21 Stock msft_;
22 int number_;
25 #endif /* STOCKFACTORY_H */