summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1535_Regression/Test.cpp
blob: 6b55ca475d1c1e0d5680c7ea498b1ba711490298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "Test.h"

Hello::Hello (PortableServer::POA_ptr poa) :
  poa_ (PortableServer::POA::_duplicate (poa))
{
}

void
Hello::print_hello_world ()
{
}

PortableServer::POA_ptr
Hello::_default_POA ()
{
  return PortableServer::POA::_duplicate (this->poa_.in ());
}