summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_home/home_ch.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_home/home_ch.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_home/home_ch.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_home/home_ch.h b/TAO/TAO_IDL/be_include/be_visitor_home/home_ch.h
new file mode 100644
index 00000000000..79fe815e178
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_home/home_ch.h
@@ -0,0 +1,46 @@
+//
+// $Id$
+//
+/* -*- c++ -*- */
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// home_ch.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Component Home node.
+// This one provides code generation for component home node.
+//
+// = AUTHOR
+// Jeff Parsons
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_HOME_CH_H_
+#define _BE_VISITOR_HOME_CH_H_
+
+class be_visitor_home_ch : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_home_ch
+ //
+ // = DESCRIPTION
+ // This is the visitor for component home for the header file
+ //
+ //
+public:
+ be_visitor_home_ch (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_home_ch (void);
+ // destructor
+
+ virtual int visit_home (be_home *node);
+ // visit home.
+};
+
+#endif /* _BE_VISITOR_HOME_CH_H_ */