summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h')
-rw-r--r--trunk/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h b/trunk/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h
new file mode 100644
index 00000000000..6ce3f927239
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h
@@ -0,0 +1,46 @@
+//
+// $Id$
+//
+/* -*- c++ -*- */
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// component_fwd_ch.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Component Forward node.
+// This one provides code generation for component forward node.
+//
+// = AUTHOR
+// Jeff Parsons
+//
+// ============================================================================
+
+#ifndef _BE_COMPONENT_COMPONENT_FWD_CH_H_
+#define _BE_COMPONENT_COMPONENT_FWD_CH_H_
+
+class be_visitor_component_fwd_ch : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_component_fwd_ch
+ //
+ // = DESCRIPTION
+ // This is the visitor for component_fwd for the header file
+ //
+ //
+public:
+ be_visitor_component_fwd_ch (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_component_fwd_ch (void);
+ // destructor
+
+ virtual int visit_component_fwd (be_component_fwd *node);
+ // visit interface_fwd.
+};
+
+#endif /* _BE_COMPONENT_COMPONENT_FWD_CH_H_ */