2 //=============================================================================
4 * @file FactoryS_impl.h
6 * @author Boris Kolpackov <bosk@ipmce.ru>
8 //=============================================================================
11 #ifndef TAO_FACTORY_S_IMPL_H
12 #define TAO_FACTORY_S_IMPL_H
19 * @brief Implementation of Test interface
21 * This interface is provided to produce valuetypes and test
24 class Test_impl
: public POA_OBV_FactoryTest::Test
28 Test_impl (CORBA::ORB_ptr orb
);
30 virtual OBV_FactoryTest::BaseValue
* get_base_value ();
32 virtual OBV_FactoryTest::Value1
* get_value1 ();
34 virtual OBV_FactoryTest::Value2
* get_value2 ();
36 virtual void shutdown ();
43 #endif /* TAO_FACTORY_S_IMPL_H */