X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=gdb%2Fui-out.h;h=ce224ed2258b92931e067377f19cdab0225ef534;hb=e2882c85786571175a0b0bfc3bcd2f14620b1ea3;hp=857e2522952063d974888cba9a19fa8d2659b1cb;hpb=4a2b031d5452226cf7894f313b3aac603f7ec5fb;p=thirdparty%2Fbinutils-gdb.git diff --git a/gdb/ui-out.h b/gdb/ui-out.h index 857e2522952..ce224ed2258 100644 --- a/gdb/ui-out.h +++ b/gdb/ui-out.h @@ -1,6 +1,6 @@ /* Output generating routines for GDB. - Copyright (C) 1999-2017 Free Software Foundation, Inc. + Copyright (C) 1999-2018 Free Software Foundation, Inc. Contributed by Cygnus Solutions. Written by Fernando Nasser for Cygnus. @@ -66,10 +66,6 @@ enum ui_out_type ui_out_type_list }; -extern struct cleanup *make_cleanup_ui_out_table_begin_end (struct ui_out *ui_out, - int nr_cols, - int nr_rows, - const char *tblid); /* Compatibility wrappers. */ extern struct cleanup *make_cleanup_ui_out_list_begin_end (struct ui_out *uiout, @@ -208,9 +204,7 @@ public: m_uiout->end (Type); } - ui_out_emit_type (const ui_out_emit_type &) = delete; - ui_out_emit_type &operator= (const ui_out_emit_type &) - = delete; + DISABLE_COPY_AND_ASSIGN (ui_out_emit_type); private: @@ -220,8 +214,8 @@ private: typedef ui_out_emit_type ui_out_emit_tuple; typedef ui_out_emit_type ui_out_emit_list; -/* This is similar to make_cleanup_ui_out_table_begin_end, but written - as an RAII class. */ +/* Start a new table on construction, and end the table on + destruction. */ class ui_out_emit_table { public: @@ -246,4 +240,27 @@ private: struct ui_out *m_uiout; }; +/* On destruction, pop the last redirection by calling the uiout's + redirect method with a NULL parameter. */ +class ui_out_redirect_pop +{ +public: + + ui_out_redirect_pop (ui_out *uiout) + : m_uiout (uiout) + { + } + + ~ui_out_redirect_pop () + { + m_uiout->redirect (NULL); + } + + ui_out_redirect_pop (const ui_out_redirect_pop &) = delete; + ui_out_redirect_pop &operator= (const ui_out_redirect_pop &) = delete; + +private: + struct ui_out *m_uiout; +}; + #endif /* UI_OUT_H */