summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h
new file mode 100644
index 00000000000..099299c684f
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h
@@ -0,0 +1,47 @@
+//
+// $Id$
+//
+/* -*- c++ -*- */
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// any_op_ch.h
+//
+// = DESCRIPTION
+// Concrete visitor for the forward declared Valuetype node.
+// This one provides code generation for the Any operators.
+//
+// = AUTHOR
+// Jeff Parsons
+//
+// ============================================================================
+
+#ifndef _BE_VALUETYPE_FWD_ANY_OP_CH_H_
+#define _BE_VALUETYPE_FWD_ANY_OP_CH_H_
+
+class be_visitor_valuetype_fwd_any_op_ch : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_valuetype_fwd_any_op_ch
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for forward declared valuetypes that
+ // generates the Any operator declaration.
+ //
+
+public:
+ be_visitor_valuetype_fwd_any_op_ch (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_valuetype_fwd_any_op_ch (void);
+ // destructor
+
+ virtual int visit_valuetype_fwd (be_valuetype_fwd *node);
+ virtual int visit_eventtype_fwd (be_eventtype_fwd *node);
+};
+
+#endif /* _BE_VALUETYPE_FWD_ANY_OP_CH_H_ */