refactor(Application.h): reduce include chain

Include only what's absolutely necessary to reduce headers pulled into a
translation unit. If you need access to
instance's from `APPLICATION` include `BaseInstance.h` separately

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers 2025-12-15 15:10:04 -07:00
parent 35121f26fd
commit 0ba2c09787
No known key found for this signature in database
GPG key ID: B4CB507E51F8B89C
6 changed files with 21 additions and 6 deletions

View file

@ -3,6 +3,7 @@
#define PRISM_PRECOMPILED_BASE_HEADERS_H
#include <algorithm>
#include <cstddef>
#include <functional>
#include <memory>
#include <optional>

View file

@ -5,9 +5,15 @@
#include <QEvent>
#include <QMetaType>
#include <QObject>
#include <QPointer>
#include <QSharedPointer>
#include <QVariant>
#include <QVariantMap>
#include <QDebug>
#include <QLoggingCategory>
#include <QCoreApplication>