Go to the documentation of this file.00001 #ifndef BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP_
00002 #define BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP_
00003
00004 #if (defined _MSC_VER) && (_MSC_VER >= 1200)
00005 # pragma once
00006 #endif
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066 #include <boost/config.hpp>
00067 #include <boost/detail/workaround.hpp>
00068
00069 #if !(defined BOOST_NO_EXCEPTIONS)
00070 # define BOOST_TRY { try
00071 # define BOOST_CATCH(x) catch(x)
00072 # define BOOST_RETHROW throw;
00073 # define BOOST_CATCH_END }
00074 #else
00075 # if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
00076 # define BOOST_TRY { if ("")
00077 # define BOOST_CATCH(x) else if (!"")
00078 # else
00079 # define BOOST_TRY { if (true)
00080 # define BOOST_CATCH(x) else if (false)
00081 # endif
00082 # define BOOST_RETHROW
00083 # define BOOST_CATCH_END }
00084 #endif
00085
00086
00087 #endif