summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1269_Regression/Echo_Caller.h
blob: 76d1ae79a1ee2076e51ed7ecdab6feb5da491ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef Echo_Caller__h_
#define Echo_Caller__h_
/**
 * @file Echo_Caller.h
 *
 * @author Carlos O'Ryan <coryan@atdesk.com>
 */
#include "TestS.h"

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

  virtual void start_task(Test::Echo_ptr client);

  virtual void shutdown();

private:
  CORBA::ORB_var orb_;
};

#endif /* Echo_Caller__h_ */