|
Namespaces |
namespace | base |
Defines |
#define | USE_OSG |
#define | _LOG_CALLER_NAME base::className(typeid(*this)) << "::" << __func__ << " -- " |
#define | Log(o) { base::_Log << _LOG_CALLER_NAME << o; } |
#define | Logln(o) { base::_Log << _LOG_CALLER_NAME << o << "\n"; } |
#define | Logc(o) { base::_Log << o; } |
#define | Logcln(o) { base::_Log << o << "\n"; } |
#define | Logf(o) { base::_Log << __func__ << " -- " << o; } |
#define | Logfln(o) { base::_Log << __func__ << " -- " << o << "\n"; } |
#define | Logfc(o) Logc(o) |
#define | Logfcln(o) Logcln(o) |
#define | Console(o) { base::_Console << o; } |
#define | Consoleln(o) { base::_Console << o << std::endl; } |
#define | abortOnAssertionFailureEnabled(e) |
#define | exceptionOutputEnabled(e) |
#define | abortOnExceptionConstructionEnabled(e) |
#define | Exception(o) String(String("exception thrown: ")+String(base::className(typeid(*this)))+"::"+String(__func__)+":\n - "+String(o)) |
#define | Exceptionf(o) String(String("exception thrown: ")+String(__func__)+":\n - "+String(o)) |
#define | Assertion(o) String(String("assertion failed: ")+String(base::className(typeid(*this)))+"::"+String(__func__)+" - "+String(o)) |
#define | Assertionf(o) String(String("assertion failed: ")+String(__func__)+" - "+String(o)) |
#define | Assert(a) |
#define | Assertf(a) |
#define | Assertm(a, s) |
#define | Assertmf(a, s) |
#define | Assertifm(f, a, s) Assertm(!f || a,s) |
#define | Assertifmf(f, a, s) Assertmf(!f || a,s) |
#define | instanceof(var, type) (dynamic_cast<type*>(&var) != 0) |