Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / docs / tutorials / Quoter / AMI / Stock_Factory_i.h
blob58b88cb56bbbe7f598683c476618fec1b13e314a
2 #ifndef TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_FACTORY_I_H
3 #define TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_FACTORY_I_H
5 #include "Stock_i.h"
7 class Quoter_Stock_Factory_i : public POA_Quoter::Stock_Factory {
8 public:
9 Quoter_Stock_Factory_i ();
11 Quoter::Stock_ptr get_stock (const char *symbol);
13 private:
14 Quoter_Stock_i rhat_;
15 Quoter_Stock_i msft_;
18 #endif /* TAO_TUTORIAL_QUOTER_SIMPLE_SERVER_STOCK_FACTORY_I_H */