From: Vadim Zeitlin Date: Fri, 8 Jun 2001 23:11:15 +0000 (+0000) Subject: added tiny wxInitializer class X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fae9f5903992726d533cb543878175f7c13ae0b1 added tiny wxInitializer class git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/app.h b/include/wx/app.h index c25f74ae29..2770a1c58e 100644 --- a/include/wx/app.h +++ b/include/wx/app.h @@ -351,6 +351,27 @@ extern bool WXDLLEXPORT wxInitialize(); // wxUninitialize() extern void WXDLLEXPORT wxUninitialize(); +// create an object of this class on stack to initialize/cleanup thel ibrary +// automatically +class WXDLLEXPORT wxInitializer +{ +public: + // initialize the library + wxInitializer() { m_ok = wxInitialize(); } + + // has the initialization been successful? (explicit test) + bool IsOk() const { return m_ok; } + + // has the initialization been successful? (implicit test) + operator bool() const { return m_ok; } + + // dtor only does clean up if we initialized the library properly + ~wxInitializer() { if ( m_ok ) wxUninitialize(); } + +private: + bool m_ok; +}; + #endif // !wxUSE_GUI // ----------------------------------------------------------------------------