AST_Native * be_generator::create_native (UTL_ScopedName *n) { be_native *retval = 0; ACE_NEW_RETURN (retval, be_native (n), 0); return retval; }
int be_visitor_xplicit_pre_proc::visit_native (be_native *node) { if (this->ref_type_) { this->check_and_store (node); return 0; } UTL_ScopedName sn (node->local_name (), 0); be_native *added_native = 0; ACE_NEW_RETURN (added_native, be_native (&sn), -1); idl_global->scopes ().top ()->add_to_scope (added_native); return 0; }