Code Documentation 3.7
Social Network Visualizer
Loading...
Searching...
No Matches
forms_logging.h
Go to the documentation of this file.
1
15
16#ifndef FORMS_LOGGING_H
17#define FORMS_LOGGING_H
18
19#include <QLoggingCategory>
20
21// One shared category for all src/forms/ dialogs -- each file has too few qDebug() calls (1-16,
22// pure one-shot UI code) to justify a category of its own; no pre-existing shared header exists
23// across the ~20 dialog*.cpp files to piggyback on the way parser.h/graphicswidget.h did, so this
24// small header exists purely to be that shared declaration point. Definition in
25// dialogsettings.cpp (arbitrary single anchor, no dependency significance).
26Q_DECLARE_LOGGING_CATEGORY(lcForms)
27
28#endif // FORMS_LOGGING_H