Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / DevGuideExamples / BiDirectionalGIOP / callback_i.cpp
blobb355371b4923d745d8ec24a1cabc12495ddee69e
1 #include "bidir_giop_pch.h"
3 #include "callback_i.h"
4 #include <iostream>
6 Callback_i::Callback_i (CORBA::ORB_ptr orb)
7 : orb_(CORBA::ORB::_duplicate(orb))
11 void Callback_i::shutdown ()
13 std::cout << "Performing clean shutdown." << std::endl;
14 CORBA::Boolean wait = false;
15 orb_->shutdown(wait);
18 void Callback_i::callback_method ()
20 std::cout << "Callback method called." << std::endl;