Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / CallbackTest / Callback.cpp
blobb12a7b10e8ff236f0548f05a55447e5524e78e70
1 #include "Callback.h"
3 Callback::Callback (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 CORBA::Boolean
9 Callback::are_you_there (CORBA::String_out answer)
11 ACE_DEBUG ((LM_DEBUG,
12 "(%P|%t) Callback - we are here!\n"));
14 answer = CORBA::string_dup ("Yes, I am!");
16 return 1;
19 void
20 Callback::test_oneway (void)
22 ACE_DEBUG ((LM_DEBUG,
23 "(%P|%t) Callback - test_oneway!\n"));
26 void
27 Callback::shutdown (void)
29 ACE_DEBUG ((LM_DEBUG,
30 "(%P|%t) Callback - shutdown!\n"));
32 this->orb_->shutdown (0);