summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Simple/server_i.h
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-02 05:21:40 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-02 05:21:40 +0000
commit56f37fbf5d53c45af046777bb3e76dac7be41e8d (patch)
tree0f87fbff47bb0d40c2f4828e77d5437f5d72586d /TAO/tests/NestedUpcall/Simple/server_i.h
parentf4f750c1126b922b646c410cbe7a61290fa4c878 (diff)
downloadATCD-56f37fbf5d53c45af046777bb3e76dac7be41e8d.tar.gz
ChangeLogTag:Thu Jul 01 22:31:06 1999 Irfan Pyarali <irfan@cs.wustl.edu>
Diffstat (limited to 'TAO/tests/NestedUpcall/Simple/server_i.h')
-rw-r--r--TAO/tests/NestedUpcall/Simple/server_i.h32
1 files changed, 32 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..e1bd4802b1e
--- /dev/null
+++ b/TAO/tests/NestedUpcall/Simple/server_i.h
@@ -0,0 +1,32 @@
+// $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,
+ CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ void start (client_ptr c,
+ CORBA::UShort time_to_live,
+ CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ void shutdown (CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+private:
+ int quiet_;
+ // Be quiet.
+
+ client_var client_;
+ // Pointer to server.
+
+ CORBA::ORB_var orb_;
+ // Pointer to orb.
+};