summaryrefslogtreecommitdiff
path: root/TAO/tests/Forwarding/test_i.cpp
blob: b972bb9ff01b2bea4a2bf2aa395d33cba8c40b41 (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
// $Id$

#include "test_i.h"

#if !defined(__ACE_INLINE__)
#include "test_i.i"
#endif /* __ACE_INLINE__ */

ACE_RCSID(Forwarding, test_i, "$Id$")

CORBA::Boolean
Simple_Server_i::test_is_a (const char * /* type */,
                            CORBA::Environment&)
    ACE_THROW_SPEC ((CORBA::SystemException))
{
  // ACE_DEBUG ((LM_DEBUG, "(%P|%t) test_is_a %s\n", type));
  return 0;
}

void
Simple_Server_i::shutdown (CORBA::Environment& ACE_TRY_ENV)
    ACE_THROW_SPEC ((CORBA::SystemException))
{
  this->orb_->shutdown (0, ACE_TRY_ENV);
}