summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Upcall_Crash/Client_Peer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Nested_Upcall_Crash/Client_Peer.h')
-rw-r--r--TAO/tests/Nested_Upcall_Crash/Client_Peer.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/TAO/tests/Nested_Upcall_Crash/Client_Peer.h b/TAO/tests/Nested_Upcall_Crash/Client_Peer.h
new file mode 100644
index 00000000000..6d51a8910e6
--- /dev/null
+++ b/TAO/tests/Nested_Upcall_Crash/Client_Peer.h
@@ -0,0 +1,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_ */