#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 |
| An object that handles general error reporting to the user. More... | |
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) |
Definition in file notify.h.
|
|
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 172 of file notify.h. Referenced by NotifyCategoryProxy< GetCategory >::init(). |
|
|
|
|
|
Value: { \
if (!(condition)) { \
if (Notify::ptr()->assert_failure(#condition, __LINE__, __FILE__)) { \
return; \
} \
} \
}
Definition at line 181 of file notify.h. Referenced by NotifyCategory::NotifyCategory(). |
|
|
|
|
1.3