Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Nested_Upcall_Crash / Client_Peer.h
blob95430ca94e9f4f956716ffdcf7cfd7bfc5d1c81c
1 /**
2 * @file Client_Peer.h
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef Client_Peer__h_
7 #define Client_Peer__h_
9 #include "TestS.h"
11 class Client_Peer
12 : public POA_Test::Peer
14 public:
15 Client_Peer (CORBA::ORB_ptr orb);
17 void callme(Test::Peer_ptr callback,
18 CORBA::ULong max_depth,
19 Test::Payload const &);
20 void crash();
21 void noop();
23 private:
24 CORBA::ORB_var orb_;
27 #endif /* Client_Peer__h_ */