1 #include "FactoryC_impl.h"
2 #include "FactoryS_impl.h"
4 Test_impl::Test_impl (CORBA::ORB_ptr orb
)
5 : orb_ (CORBA::ORB::_duplicate (orb
))
9 OBV_FactoryTest::BaseValue
*
10 Test_impl::get_base_value ()
12 OBV_FactoryTest::BaseValue
* ret_val
= 0;
13 ACE_NEW_RETURN (ret_val
,
14 OBV_OBV_FactoryTest::BaseValue
,
20 OBV_FactoryTest::Value1
*
21 Test_impl::get_value1 ()
23 OBV_FactoryTest::Value1
* ret_val
= 0;
24 ACE_NEW_RETURN (ret_val
,
25 OBV_OBV_FactoryTest::Value1
,
31 OBV_FactoryTest::Value2
*
32 Test_impl::get_value2 ()
34 OBV_FactoryTest::Value2
* ret_val
= 0;
35 ACE_NEW_RETURN (ret_val
,
43 Test_impl::shutdown ()
45 this->orb_
->shutdown (false);