#include <dtoolbase.h>
#include "notifyCategory.h"
#include "notifySeverity.h"
#include "notify.h"
#include "notifyCategoryProxy.I"
Go to the source code of this file.
Compounds | |
class | NotifyCategoryProxy |
A handy wrapper around a NotifyCategory pointer. More... | |
Defines | |
#define | NotifyCategoryDecl(basename, expcl, exptp) |
#define | NotifyCategoryDeclNoExport(basename) |
#define | NotifyCategoryDefName(basename, actual_name, parent_category) |
#define | NotifyCategoryDef(basename, parent_category) NotifyCategoryDefName(basename, #basename, parent_category); |
Functions | |
template<class GetCategory> ostream & | operator<< (ostream &out, NotifyCategoryProxy< GetCategory > &proxy) |
Definition in file notifyCategoryProxy.h.
|
Value: class NotifyCategoryGetCategory_ ## basename { \ public: \ NotifyCategoryGetCategory_ ## basename(); \ static NotifyCategory *get_category(); \ }; \ extern NotifyCategoryProxy<NotifyCategoryGetCategory_ ## basename> basename ## _cat; Definition at line 178 of file notifyCategoryProxy.h. |
|
Value: class NotifyCategoryGetCategory_ ## basename { \ public: \ NotifyCategoryGetCategory_ ## basename(); \ static NotifyCategory *get_category(); \ }; \ extern NotifyCategoryProxy<NotifyCategoryGetCategory_ ## basename> basename ## _cat; Definition at line 191 of file notifyCategoryProxy.h. |
|
Definition at line 221 of file notifyCategoryProxy.h. |
|
Value: NotifyCategoryProxy<NotifyCategoryGetCategory_ ## basename> basename ## _cat; \ static NotifyCategoryGetCategory_ ## basename force_init_ ## basename ## _cat; \ NotifyCategoryGetCategory_ ## basename:: \ NotifyCategoryGetCategory_ ## basename() { \ basename ## _cat.init(); \ } \ NotifyCategory *NotifyCategoryGetCategory_ ## basename:: \ get_category() { \ return Notify::ptr()->get_category(string(actual_name), parent_category); \ } Definition at line 210 of file notifyCategoryProxy.h. |
|
Definition at line 153 of file notifyCategoryProxy.h. |