2 //=============================================================================
6 * Visitor generating code for Root in the CIAO servant header
10 //=============================================================================
14 be_visitor_root_svh::be_visitor_root_svh (be_visitor_context
*ctx
)
15 : be_visitor_root (ctx
)
19 be_visitor_root_svh::~be_visitor_root_svh (void)
24 be_visitor_root_svh::visit_root (be_root
*node
)
26 if (this->init () == -1)
28 ACE_ERROR_RETURN ((LM_ERROR
,
29 ACE_TEXT ("be_visitor_root_svh::init - ")
30 ACE_TEXT ("failed to initialize\n")),
34 if (this->visit_scope (node
) == -1)
36 ACE_ERROR_RETURN ((LM_ERROR
,
37 ACE_TEXT ("be_visitor_root_svh::visit_root - ")
38 ACE_TEXT ("codegen for scope failed\n")),
42 (void) tao_cg
->end_ciao_svnt_header ();
48 be_visitor_root_svh::init (void)
50 /// First open the file for writing.
52 tao_cg
->start_ciao_svnt_header (
53 be_global
->be_get_ciao_svnt_hdr_fname ());
57 ACE_ERROR_RETURN ((LM_ERROR
,
58 ACE_TEXT ("be_visitor_root_svh::init - ")
59 ACE_TEXT ("Error opening CIAO servant ")
60 ACE_TEXT ("header file\n")),
64 /// Initialize the stream.
65 this->ctx_
->stream (tao_cg
->ciao_svnt_header ());