summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h b/TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h
new file mode 100644
index 00000000000..3bbb72d9107
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h
@@ -0,0 +1,48 @@
+//$Id$
+//
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// direct_proxy_impl_ss.h
+//
+// = DESCRIPTION
+// Visitor that generates the code for the operation
+// in the Direct Proxy Implementation.
+//
+// = AUTHOR
+// Angelo Corsaro
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_OPERATION_DIRECT_PROXY_IMPL_SS_H_
+#define _BE_VISITOR_OPERATION_DIRECT_PROXY_IMPL_SS_H_
+
+class be_visitor_operation_direct_proxy_impl_ss : public be_visitor_operation
+{
+ //
+ // = TITLE
+ // be_visitor_operation_direct_proxy_impl_ss
+ //
+ // = DESCRIPTION
+ // This visitor generates the code for the
+ // operation of the Direct Proxy Implementation.
+ //
+ //
+public:
+ be_visitor_operation_direct_proxy_impl_ss (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_operation_direct_proxy_impl_ss (void);
+ // destructor
+
+ virtual int visit_operation (be_operation *node);
+ // visit operation node.
+
+ virtual int gen_invoke (be_visitor_context &ctx, be_operation *node);
+ // A helper method to generate operation invocation code.
+};
+
+#endif /* _BE_VISITOR_OPERATION_DIRECT_PROXY_IMPL_SS_H_ */