summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1535_Regression/Test.cpp
blob: 55daf8fcfc44d99f1e1758882db172523d1e7d05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// $Id$
//
#include "Test.h"

ACE_RCSID(Hello, Hello, "$Id$")

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

void
Hello::print_hello_world (void)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
}

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