summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/Security/Send_File/test_i.cpp
blob: 7066b59589b2bf8f345db45641b29894a17c4ffd (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_i.h"

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

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

void
Simple_Server_i::send_line (const char *line,
                            CORBA::Environment&)
    ACE_THROW_SPEC ((CORBA::SystemException))
{
  ACE_DEBUG ((LM_DEBUG, "%s\n", line));
}

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