travex
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
utils.h
Go to the documentation of this file.
1 #ifndef tvx_utils_h
2 #define tvx_utils_h
3 
4 #include "TError.h"
5 
6 
7 #define TVX_INFO(...) ::Info(__PRETTY_FUNCTION__, __VA_ARGS__)
8 #define TVX_WARNING(...) ::Warning(__PRETTY_FUNCTION__, __VA_ARGS__)
9 #define TVX_ERROR(...) ::Error(__PRETTY_FUNCTION__, __VA_ARGS__)
10 #define TVX_FATAL(...) ::Fatal(__PRETTY_FUNCTION__, __VA_ARGS__)
11 
12 
13 #endif