summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Security/Callback/client_i.cpp
blob: eea1bb604307f914f5dcb533edfff3cfbe12ca49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "ace/Log_Msg.h"
#include "client_i.h"

client_i::client_i (server_ptr s)
  : server_ (server::_duplicate (s))
{
}

client_i::~client_i ()
{
}

void
client_i::test_reply (const char *msg)
{
  ACE_DEBUG((LM_INFO,
             ACE_TEXT("(%N) message received was ")
             ACE_TEXT("(%s)\n"),
             msg));
}