summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Simple/server_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Simple/server_i.h')
-rw-r--r--TAO/tests/NestedUpcall/Simple/server_i.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/TAO/tests/NestedUpcall/Simple/server_i.h b/TAO/tests/NestedUpcall/Simple/server_i.h
new file mode 100644
index 00000000000..adc1cf9dd25
--- /dev/null
+++ b/TAO/tests/NestedUpcall/Simple/server_i.h
@@ -0,0 +1,27 @@
+// $Id$
+
+#include "testS.h"
+
+class server_i : public POA_server
+{
+public:
+ server_i (int quiet,
+ CORBA::ORB_ptr orb);
+
+ void ping (CORBA::UShort time_to_live);
+
+ void start (client_ptr c,
+ CORBA::UShort time_to_live);
+
+ void shutdown (void);
+
+private:
+ int quiet_;
+ // Be quiet.
+
+ client_var client_;
+ // Pointer to server.
+
+ CORBA::ORB_var orb_;
+ // Pointer to orb.
+};