summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/Bug_2316_Regression/Test_impl.cpp
blob: d469544e25134c110e9e1638d0bae4853b3c063e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

#include "Test_impl.h"

void Server_impl::shutdown ()
    throw (CORBA::SystemException)
{
  this->orb_->shutdown (0);
}

Server_impl::Server_impl (CORBA::ORB_ptr orb)
    : orb_ (CORBA::ORB::_duplicate (orb))
{
}

void Server_impl::method (CORBA::Object_ptr)
    throw (CORBA::SystemException)
{
}