summaryrefslogtreecommitdiff
path: root/ACE/TAO/TAO_IDL/be_include/be_visitor_home/home_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/TAO_IDL/be_include/be_visitor_home/home_cs.h')
-rw-r--r--ACE/TAO/TAO_IDL/be_include/be_visitor_home/home_cs.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/ACE/TAO/TAO_IDL/be_include/be_visitor_home/home_cs.h b/ACE/TAO/TAO_IDL/be_include/be_visitor_home/home_cs.h
new file mode 100644
index 00000000000..77c1a60f7e6
--- /dev/null
+++ b/ACE/TAO/TAO_IDL/be_include/be_visitor_home/home_cs.h
@@ -0,0 +1,46 @@
+//
+// $Id$
+//
+/* -*- c++ -*- */
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// home_cs.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_CS_H_
+#define _BE_VISITOR_HOME_CS_H_
+
+class be_visitor_home_cs : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_home_cs
+ //
+ // = DESCRIPTION
+ // This is the visitor for component home for the source file
+ //
+ //
+public:
+ be_visitor_home_cs (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_home_cs (void);
+ // destructor
+
+ virtual int visit_home (be_home *node);
+ // visit home.
+};
+
+#endif /* _BE_VISITOR_HOME_CS_H_ */