summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Collocated/Forward/Test_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/OBV/Collocated/Forward/Test_impl.h')
-rw-r--r--TAO/tests/OBV/Collocated/Forward/Test_impl.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/TAO/tests/OBV/Collocated/Forward/Test_impl.h b/TAO/tests/OBV/Collocated/Forward/Test_impl.h
new file mode 100644
index 00000000000..725369e944a
--- /dev/null
+++ b/TAO/tests/OBV/Collocated/Forward/Test_impl.h
@@ -0,0 +1,49 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/OBV/Collocated/Forward
+//
+// = FILENAME
+// Test_impl.h
+//
+// = AUTHOR
+// Boris Kolpackov <bosk@ipmce.ru>
+//
+// ============================================================================
+
+#ifndef TAO_TEST_IMPL_H
+#define TAO_TEST_IMPL_H
+
+#include "TreeControllerS.h"
+#include "TreeBaseS.h"
+#include "TreeNodeS.h"
+
+class Test_impl : public POA_Test
+{
+ // = TITLE
+ // Implementation of Test interface
+ //
+ // = DESCRIPTION
+ // This interface is provided to produce valuetypes and test
+ // marshaling
+ //
+public:
+ Test_impl (CORBA::ORB_ptr orb);
+ // ctor
+
+ virtual TreeController * reflect (
+ TreeController * tc
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+private:
+ CORBA::ORB_var orb_;
+ // The ORB
+};
+
+#endif /* TAO_TEST_IMPL_H */