#include "Multiple_Impl.h" #include "Collocation_Tester.h" /////////////////////////////////////////////////////////// // Bottom_Impl Implementation // Bottom_Impl::Bottom_Impl (CORBA::ORB_ptr orb) { this->orb_ = CORBA::ORB::_duplicate (orb); } Bottom_Impl::~Bottom_Impl () { } char * Bottom_Impl::top_quote () { return CORBA::string_dup(Quote::top); } char * Bottom_Impl::left_quote () { return CORBA::string_dup(Quote::left); } char * Bottom_Impl::right_quote () { return CORBA::string_dup(Quote::right); } char * Bottom_Impl::bottom_quote () { return CORBA::string_dup(Quote::bottom); } void Bottom_Impl::shutdown () { this->orb_->shutdown (false); } /////////////////////////////////////////////////////////// // Delegated_Bottom_Impl Implementation // Delegated_Bottom_Impl::Delegated_Bottom_Impl (Multiple::Bottom_ptr delegate, CORBA::ORB_ptr orb) : delegate_ (delegate) { this->orb_ = CORBA::ORB::_duplicate (orb); } Delegated_Bottom_Impl::~Delegated_Bottom_Impl () { // No-Op. } char * Delegated_Bottom_Impl::top_quote () { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Delegating the call: \n"))); CORBA::String_var msg = this->delegate_->top_quote (); return msg._retn (); } char * Delegated_Bottom_Impl::left_quote () { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Delegating the call: \n"))); CORBA::String_var msg = this->delegate_->left_quote (); return msg._retn (); } char * Delegated_Bottom_Impl::right_quote () { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Delegating the call: \n"))); CORBA::String_var msg = this->delegate_->right_quote (); return msg._retn (); } char * Delegated_Bottom_Impl::bottom_quote () { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Delegating the call: \n"))); CORBA::String_var msg = this->delegate_->bottom_quote (); return msg._retn (); } void Delegated_Bottom_Impl::shutdown () { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Delegating Shut-Down.\n"))); this->delegate_->shutdown (); //this->orb_->shutdown (false); }