Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Nested_Upcall_Crash / Server_Peer.h
blob9ae7da6cb14576a9232913abc725728393e745eb
1 /**
2 * @file Server_Peer.h
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef Server_Peer__h_
7 #define Server_Peer__h_
9 #include "TestS.h"
11 class Server_Peer
12 : public POA_Test::Peer
14 public:
15 Server_Peer (unsigned int seed,
16 CORBA::ORB_ptr orb,
17 CORBA::ULong payload_size);
19 void callme(Test::Peer_ptr callback,
20 CORBA::ULong max_depth,
21 Test::Payload const & extra_data);
22 void crash();
23 void noop();
25 private:
26 unsigned int seed_;
28 CORBA::ORB_var orb_;
30 CORBA::ULong payload_size_;
33 #endif /* Server_Peer__h_ */