summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-19 23:47:28 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-19 23:47:28 +0000
commit98995e49f9de17f6986e52addcbeae3e543c80a2 (patch)
tree923476e7a9a373699e6addc4fef95ac1d3a39ed8
parentd9618fb6a9e3aa3f968057c95d551f9f9b7f0142 (diff)
downloadATCD-98995e49f9de17f6986e52addcbeae3e543c80a2.tar.gz
added new interceptor related result files
-rw-r--r--TAO/TAO_IDL/be/be_visitor_factory.cpp4
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation.cpp1
2 files changed, 4 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_factory.cpp b/TAO/TAO_IDL/be/be_visitor_factory.cpp
index 22312c92394..928ac84bb81 100644
--- a/TAO/TAO_IDL/be/be_visitor_factory.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_factory.cpp
@@ -593,7 +593,6 @@ TAO_Compiled_Visitor_Factory::make_visitor (be_visitor_context *ctx)
case TAO_CodeGen::TAO_OPERATION_INTERCEPTORS_ARGLIST_CS:
case TAO_CodeGen::TAO_OPERATION_INTERCEPTORS_ARG_INFO_CS:
case TAO_CodeGen::TAO_OPERATION_INTERCEPTORS_PARAMLIST:
- case TAO_CodeGen::TAO_OPERATION_INTERCEPTORS_RESULT:
case TAO_CodeGen::TAO_OPERATION_INTERCEPTORS_INFO_ARGLIST_SH:
case TAO_CodeGen::TAO_OPERATION_INTERCEPTORS_INFO_ARGLIST_SS:
case TAO_CodeGen::TAO_OPERATION_INTERCEPTORS_ARGLIST_SH:
@@ -601,6 +600,9 @@ TAO_Compiled_Visitor_Factory::make_visitor (be_visitor_context *ctx)
case TAO_CodeGen::TAO_OPERATION_INTERCEPTORS_ARG_INFO_SS:
return new be_visitor_operation_interceptors_arglist (new_ctx);
+ case TAO_CodeGen::TAO_OPERATION_INTERCEPTORS_RESULT:
+ return new be_visitor_operation_interceptors_result (new_ctx);
+
case TAO_CodeGen::TAO_OPERATION_ARG_PRE_INVOKE_CS:
case TAO_CodeGen::TAO_OPERATION_ARG_POST_INVOKE_CS:
case TAO_CodeGen::TAO_OPERATION_ARG_UPCALL_SS:
diff --git a/TAO/TAO_IDL/be/be_visitor_operation.cpp b/TAO/TAO_IDL/be/be_visitor_operation.cpp
index 0036ea1dae3..550874d4c86 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation.cpp
@@ -67,5 +67,6 @@
#include "be_visitor_operation/interceptors_ss.cpp"
#include "be_visitor_operation/interceptors_exceptlist.cpp"
#include "be_visitor_operation/interceptors_info_rettype.cpp"
+#include "be_visitor_operation/interceptors_result.cpp"
ACE_RCSID(be, be_visitor_operation, "$Id$")