summaryrefslogtreecommitdiff
path: root/TAO/tests/Parallel_Connect_Strategy/Test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Parallel_Connect_Strategy/Test_i.h')
-rw-r--r--TAO/tests/Parallel_Connect_Strategy/Test_i.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/TAO/tests/Parallel_Connect_Strategy/Test_i.h b/TAO/tests/Parallel_Connect_Strategy/Test_i.h
new file mode 100644
index 00000000000..0fbcc7a4ab6
--- /dev/null
+++ b/TAO/tests/Parallel_Connect_Strategy/Test_i.h
@@ -0,0 +1,35 @@
+// -*- C++ -*-
+
+//
+// $Id$
+//
+
+#ifndef TEST_I_H
+#define TEST_I_H
+#include /**/ "ace/pre.h"
+
+#include "TestS.h"
+
+/// Implement the Test::Hello interface
+class Hello
+ : public virtual POA_Test::Hello
+{
+public:
+ /// Constructor
+ Hello (CORBA::ORB_ptr orb);
+
+ // = The skeleton methods
+ virtual char * get_string (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+private:
+ /// Use an ORB reference to conver strings to objects and shutdown
+ /// the application.
+ CORBA::ORB_var orb_;
+};
+
+#include /**/ "ace/post.h"
+#endif /* TEST_I_H */