summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Portable_Interceptors/AMI/Echo.h
blob: 9109ade06246b7fdaab483797514375ff971464d (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
26
27
/**
 * @file Echo.h
 *
 * $Id$
 *
 * @author Carlos O'Ryan <coryan@atdesk.com>
 */
#ifndef Echo__h_
#define Echo__h_

#include "TestS.h"
#include "tao/PortableServer/PortableServer.h"

class Echo
  : public POA_Test::Echo
{
public:
  Echo(CORBA::ORB_ptr orb);

  virtual char * echo_operation(char const * the_input);
  virtual void shutdown(void);

private:
  CORBA::ORB_var orb_;
};

#endif /* Echo__h_ */