summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_2615_Regression/Hello.cpp
blob: d7bd3093cb2ea707aae6c685a59be7b9e78622af (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
25
26
27
28
29
30
31
32
33
34
//
// $Id$
//

#include "ServerRequest_Interceptor2.h"
#include "Hello.h"

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

Hello::Hello (CORBA::ORB_ptr orb, Test::Hello_ptr, CORBA::ULong)
  : orb_ (CORBA::ORB::_duplicate (orb))
{
}

void
Hello::shutdown (void)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  this->orb_->shutdown (0);
}

void
Hello::ping (void)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  return;
}

CORBA::Boolean
Hello::has_ft_request_service_context (void)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  return ServerRequest_Interceptor2::has_ft_request_sc_;
}