summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Upcall_Crash/Client_Peer.h
blob: 6d51a8910e61ff6521a5448b6564cd9c9a284b4e (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
28
29
30
/**
 * @file Client_Peer.h
 *
 * $Id$
 *
 * @author Carlos O'Ryan <coryan@atdesk.com>
 *
 */
#ifndef Client_Peer__h_
#define Client_Peer__h_

#include "TestS.h"

class Client_Peer
  : public POA_Test::Peer
{
public:
  Client_Peer (CORBA::ORB_ptr orb);

  void callme(Test::Peer_ptr callback,
              CORBA::ULong max_depth,
              Test::Payload const &);
  void crash(void);
  void noop(void);

private:
  CORBA::ORB_var orb_;
};

#endif /* Client_Peer__h_ */