summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h')
-rw-r--r--trunk/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h b/trunk/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h
new file mode 100644
index 00000000000..c36cf7f5192
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h
@@ -0,0 +1,48 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// root_ch.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Root class
+// This one provides code generation for elements of the Root node in the
+// client header.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_ROOT_ROOT_CH_H_
+#define _BE_VISITOR_ROOT_ROOT_CH_H_
+
+class be_visitor_root_ch : public be_visitor_root
+{
+ //
+ // = TITLE
+ // be_visitor_root_ch
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor to generate the client header for root
+ //
+ //
+public:
+ be_visitor_root_ch (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_root_ch (void);
+ // destructor
+
+ virtual int init (void);
+ // set the right context and make a visitor
+};
+
+#endif /* _BE_VISITOR_ROOT_ROOT_CH_H_ */