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