summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Strategies/simple_test_i.cpp
blob: fc61c63ee2d37366e372055cd72409c37c3b671b (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 "simple_test_i.h"
#include "tao/debug.h"

#if !defined(__ACE_INLINE__)
#include "simple_test_i.inl"
#endif /* __ACE_INLINE__ */

ACE_RCSID(tests, simple_test_i, "$Id$")

CORBA::Boolean
Simple_Server_i::print_status (void)
{
  if (TAO_debug_level > 0)
    ACE_DEBUG ((LM_DEBUG,
                "%N:%l:(%P:%t):Simple_Server_i::print_status called\n"));
  return 0;
}

void
Simple_Server_i::shutdown (void)
{
  this->orb_->shutdown (0);
}