Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Servant_To_Reference_Test / Test_i.cpp
blob6f98d20f46fe1be9b867189ff16205c32d10f67c
1 #include "Test_i.h"
3 One_Impl::One_Impl (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 char *
9 One_Impl::get_string (void)
11 return CORBA::string_dup ("One_Impl there!");
14 Two_Impl::Two_Impl (CORBA::ORB_ptr orb)
15 : orb_ (CORBA::ORB::_duplicate (orb))
19 char *
20 Two_Impl::get_string (void)
22 return CORBA::string_dup ("One_Impl there!");
26 Three_Impl::Three_Impl (CORBA::ORB_ptr orb)
27 : orb_ (CORBA::ORB::_duplicate (orb))
31 char *
32 Three_Impl::get_string (void)
34 return CORBA::string_dup ("Three_Impl there!");