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