summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be/be_visitor_root/root_sh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be/be_visitor_root/root_sh.cpp')
-rw-r--r--trunk/TAO/TAO_IDL/be/be_visitor_root/root_sh.cpp59
1 files changed, 59 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be/be_visitor_root/root_sh.cpp b/trunk/TAO/TAO_IDL/be/be_visitor_root/root_sh.cpp
new file mode 100644
index 00000000000..affeb35db6c
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be/be_visitor_root/root_sh.cpp
@@ -0,0 +1,59 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// root_sh.cpp
+//
+// = DESCRIPTION
+// Visitor generating code for Root in the server header
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+ACE_RCSID (be_visitor_root,
+ root_sh,
+ "$Id$")
+
+// ***********************************
+// Root visitor for server header
+// ***********************************
+
+be_visitor_root_sh::be_visitor_root_sh (be_visitor_context *ctx)
+ : be_visitor_root (ctx)
+{
+}
+
+be_visitor_root_sh::~be_visitor_root_sh (void)
+{
+}
+
+int
+be_visitor_root_sh::init (void)
+{
+ // open the file
+ if (tao_cg->start_server_header (be_global->be_get_server_hdr_fname ())
+ == -1)
+ {
+ ACE_ERROR_RETURN ((
+ LM_ERROR,
+ "(%N:%l) be_visitor_root_sh::init - "
+ "Error :%p: Unable to open server header file : %s\n",
+ "start_server_header",
+ be_global->be_get_server_hdr_fname ()
+ ),
+ -1
+ );
+ }
+
+ // set the stream and the next state.
+ this->ctx_->stream (tao_cg->server_header ());
+ return 0;
+}