Include dependency graph for rs_try_catch.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | RS_BEGIN_TRY try { |
| This macro is used to begin a try { ... | |
| #define | RS_END_TRY } |
| This macro is used to end a try { ... | |
| #define | RS_CATCH(Exception, Code) catch ( Exception ) { Code } |
| This macro is used to create a catch section after a try section. | |
Definition in file rs_try_catch.h.
|
|
This macro is used to begin a try { ... } catch () section. Definition at line 64 of file rs_try_catch.h. |
|
|
This macro is used to end a try { ... } catch () section. Definition at line 65 of file rs_try_catch.h. |
|
|
This macro is used to create a catch section after a try section. Exception should be the declaration of the variable of the exception type to catch, e.g. RSException& excpt. Code should be the code that should be executed when the exception is caught. Definition at line 66 of file rs_try_catch.h. |
1.3-rc3