summaryrefslogtreecommitdiff
path: root/TAO/tests/Strategies/simple_test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Strategies/simple_test_i.h')
-rw-r--r--TAO/tests/Strategies/simple_test_i.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/TAO/tests/Strategies/simple_test_i.h b/TAO/tests/Strategies/simple_test_i.h
new file mode 100644
index 00000000000..c9cb80d4476
--- /dev/null
+++ b/TAO/tests/Strategies/simple_test_i.h
@@ -0,0 +1,48 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tao/Strategies/tests/
+//
+// = FILENAME
+// simple_test_i.h
+//
+// = AUTHOR
+// Priyanka Gontla <pgontla@ece.uci.edu>
+//
+// ============================================================================
+
+#ifndef TAO_STRATEGIES_TEST_I_H
+#define TAO_STRATEGIES_TEST_I_H
+
+#include "simple_testS.h"
+
+class Simple_Server_i : public POA_Simple_Server
+{
+ // = TITLE
+ // Simpler Server implementation
+ //
+ // = DESCRIPTION
+ // Implements the Simple_Server interface in test.idl
+ //
+public:
+ Simple_Server_i (CORBA::ORB_ptr orb);
+ // ctor
+
+ // = The Simple_Server methods.
+ CORBA::Boolean print_status (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ void shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+private:
+ CORBA::ORB_var orb_;
+};
+
+#if defined(__ACE_INLINE__)
+#include "simple_test_i.inl"
+#endif /* __ACE_INLINE__ */
+
+#endif /* TAO_STRATEGIES_I_H */