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

#include "Test_impl.h"

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

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

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