summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h b/TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h
new file mode 100644
index 00000000000..7c2716e32c3
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h
@@ -0,0 +1,45 @@
+// $Id$
+//
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// proxy_impl_xh.h
+//
+// = DESCRIPTION
+// Visitor for generating code for proxy implementations.
+//
+// = AUTHOR
+// Angelo Corsaro
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_OPERATION_PROXY_IMPL_XH_H_
+#define _BE_VISITOR_OPERATION_PROXY_IMPL_XH_H_
+
+
+class be_visitor_operation_proxy_impl_xh : public be_visitor_operation
+{
+ //
+ // = TITLE
+ // be_visitor_operation_proxy_impl_xh
+ //
+ // = DESCRIPTION
+ // Concrete visitor that generates the code for the base class
+ // of Proxy Impls.
+ //
+ //
+public:
+ be_visitor_operation_proxy_impl_xh (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_operation_proxy_impl_xh (void);
+ // destructor
+
+ virtual int visit_operation (be_operation *node);
+ // visit operation.
+};
+
+#endif /* _BE_VISITOR_OPERATION_PROXY_IMPL_XH_H_ */