summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1535_Regression/Test.cpp
blob: c99cfe0aaecd3566ad8e101ac640e853261b665e (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 (void)
{
}

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