blob: ad27e9ee1b1c8bc6135d358b49900ae146faa53a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// $Id$
//
#include "test_i.h"
void
test_i::send_stuff (const char* string,
CORBA::Environment &)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG, "TAO (%P|%t) - %s\n", string));
}
|