Go to the documentation of this file.
33 #ifndef __H__UG__COMMON__COMMON__
34 #define __H__UG__COMMON__COMMON__
60 #define LOG(msg) UG_LOG(msg)
61 #define STATIC_ASSERT(expr, msg) UG_STATIC_ASSERT(expr, msg)
67 #define SAFE_DELETE(a) {if(a){ delete a; a = NULL;}}
68 #define SAFE_RELEASE(p) {if(p) { (p)->Release(); (p)=NULL;}}