Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / Bug_3853_Regression / Hello_i.cpp
blobead9e62ad5cb159c357f3e53ea1c282137f58015
1 #include "Hello_i.h"
2 #include "ace/OS_NS_unistd.h"
4 // Implementation skeleton constructor
5 Demo_HelloWorld_i::Demo_HelloWorld_i (CORBA::ORB_ptr orb)
6 : orb_ (CORBA::ORB::_duplicate (orb))
10 void Demo_HelloWorld_i::sayHello (const char * msg)
12 ACE_OS::sleep(1);
13 // Add your implementation here
14 ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%P|%t)Demo_HelloWorld_i::sayHello %C\n"), msg));
17 void
18 Demo_HelloWorld_i::shutdown()
20 ACE_DEBUG ((LM_DEBUG, "(%P|%t)Demo_HelloWorld_i::shutdown \n"));
21 this->orb_->shutdown (false);