#include "dtoolbase.h"#include "notifyCategory.h"#include "notifySeverity.h"#include <string>#include <vector>#include <map>#include "notify.I"Go to the source code of this file.
Compounds | |
| class | Notify |
Defines | |
| #define | nout (Notify::out()) |
| #define | nassertr(condition, return_value) |
| #define | nassertv(condition) |
| #define | nassertd(condition) |
| #define | nassertr_always(condition, return_value) nassertr(condition, return_value) |
| #define | nassertv_always(condition) nassertv(condition) |
|
|
Value: if (!(condition) && \ Notify::ptr()->assert_failure(#condition, __LINE__, __FILE__)) |
|
|
Value: { \
if (!(condition)) { \
if (Notify::ptr()->assert_failure(#condition, __LINE__, __FILE__)) { \
return return_value; \
} \
} \
}
Definition at line 156 of file notify.h. Referenced by Notify::get_category(). |
|
|
|
|
|
Value: { \
if (!(condition)) { \
if (Notify::ptr()->assert_failure(#condition, __LINE__, __FILE__)) { \
return; \
} \
} \
}
Definition at line 165 of file notify.h. Referenced by NotifyCategory::NotifyCategory(). |
|
|
|
|
1.3