summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_2174_Regression/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Bug_2174_Regression/test_i.h')
-rw-r--r--ACE/TAO/tests/Bug_2174_Regression/test_i.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Bug_2174_Regression/test_i.h b/ACE/TAO/tests/Bug_2174_Regression/test_i.h
new file mode 100644
index 00000000000..8c102e3a1b7
--- /dev/null
+++ b/ACE/TAO/tests/Bug_2174_Regression/test_i.h
@@ -0,0 +1,43 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/Timeout
+//
+// = FILENAME
+// test_i.h
+//
+// = AUTHOR
+// Carlos O'Ryan
+//
+// ============================================================================
+
+#ifndef TAO_TIMEOUT_TEST_I_H
+#define TAO_TIMEOUT_TEST_I_H
+
+#include "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::Long echo (CORBA::Long x,
+ CORBA::Long msecs);
+ void shutdown (void);
+
+private:
+ CORBA::ORB_var orb_;
+ // The ORB
+};
+
+#endif /* TAO_TIMEOUT_TEST_I_H */