]> git.saurik.com Git - wxWidgets.git/blame - include/wx/except.h
Clarify documentation for wxPropertyGridEvent::GetProperty()
[wxWidgets.git] / include / wx / except.h
CommitLineData
2524f1ce
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/except.h
3// Purpose: C++ exception related stuff
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 17.09.2003
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 9// Licence: wxWindows licence
2524f1ce
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_EXCEPT_H_
13#define _WX_EXCEPT_H_
14
15#include "wx/defs.h"
16
17// ----------------------------------------------------------------------------
18// macros working whether wxUSE_EXCEPTIONS is 0 or 1
19// ----------------------------------------------------------------------------
20
06b76f7e
VZ
21// even if the library itself was compiled with exceptions support, the user
22// code using it might be compiling with a compiler switch disabling them in
23// which cases we shouldn't use try/catch in the headers -- this results in
24// compilation errors in e.g. wx/scopeguard.h with at least g++ 4
25#if !wxUSE_EXCEPTIONS || \
26 (defined(__GNUG__) && !defined(__EXCEPTIONS))
27 #define wxNO_EXCEPTIONS
28#endif
29
30#ifdef wxNO_EXCEPTIONS
2524f1ce
VZ
31 #define wxTRY
32 #define wxCATCH_ALL(code)
06b76f7e
VZ
33#else // do use exceptions
34 #define wxTRY try
35 #define wxCATCH_ALL(code) catch ( ... ) { code }
36#endif // wxNO_EXCEPTIONS/!wxNO_EXCEPTIONS
2524f1ce
VZ
37
38#endif // _WX_EXCEPT_H_
39