summaryrefslogtreecommitdiff
path: root/ACE/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h')
-rw-r--r--ACE/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/ACE/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h b/ACE/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h
new file mode 100644
index 00000000000..1272ac79696
--- /dev/null
+++ b/ACE/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h
@@ -0,0 +1,47 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// root_svs.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Root class
+// This one provides code generation for elements of the Root node in the
+// CIAO servant source.
+//
+// = AUTHOR
+// Jeff Parsons
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_ROOT_ROOT_SVS_H_
+#define _BE_VISITOR_ROOT_ROOT_SVS_H_
+
+class be_visitor_root_svs : public be_visitor_root
+{
+ //
+ // = TITLE
+ // be_visitor_root_svs
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor to generate the CIAO servant
+ // source for root
+ //
+ //
+public:
+ be_visitor_root_svs (be_visitor_context *ctx);
+
+ ~be_visitor_root_svs (void);
+
+ virtual int init (void);
+ // Set the right context and make a visitor.
+};
+
+#endif /* _BE_VISITOR_ROOT_ROOT_SVS_H_ */