summaryrefslogtreecommitdiff
path: root/TAO/tests/Monitor/Marshal_Buffer/test_i.cpp
blob: 90017cce3328ba9f68067ce28743b61af0c20146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// $Id$

#include "ace/streams.h"

#include "test_i.h"

char *
test_impl::test_op (const char * in_arg)
{
  cout << "servant got " << ACE_OS::strlen (in_arg) << " bytes" << endl;
  return CORBA::string_dup (in_arg);
}