ACE+TAO-6_5_17
[ACE_TAO.git] / TAO / tests / Bug_3384_Regression / Server_i.cpp
blob8f25dbaffc72cbcb1b9833922fc80c927fbc1431
1 #include "Server_i.h"
3 Server::~Server () {}
5 void Server::setup (
6 ::Test::Client_ptr cli)
8 this->cli_ = Test::Client::_duplicate (cli);
11 void Server::request (
12 ::CORBA::Long sel)
14 ACE_DEBUG ((LM_DEBUG, "(%P|%t) Server::request -> %d\n", sel));
15 if (! CORBA::is_nil (this->cli_.in ()))
17 this->cli_->reply ("Hello world!");
21 void Server::shutdown (
22 void)
24 this->orb_->shutdown (0);