Restructure includes

The intention of this change is to reduce the interdependency of the
various components to reduce compile time when applying changes.
This commit is contained in:
WarmUpTill
2023-04-29 22:19:16 +02:00
committed by WarmUpTill
parent 20eb56db2d
commit 9ec772f723
132 changed files with 461 additions and 488 deletions

View File

@@ -1,5 +1,5 @@
#include "scene-selection.hpp"
#include "advanced-scene-switcher.hpp"
#include "switcher-data.hpp"
#include "utility.hpp"
namespace advss {

View File

@@ -1,5 +1,5 @@
#include "source-selection.hpp"
#include "advanced-scene-switcher.hpp"
#include "obs-module-helper.hpp"
namespace advss {

View File

@@ -1,5 +1,5 @@
#include "transition-selection.hpp"
#include "advanced-scene-switcher.hpp"
#include "switcher-data.hpp"
namespace advss {

View File

@@ -2,6 +2,7 @@
#include "platform-funcs.hpp"
#include "scene-selection.hpp"
#include "regex-config.hpp"
#include "scene-group.hpp"
#include <QStandardPaths>
#include <QFile>

View File

@@ -11,12 +11,12 @@
#include <obs-frontend-api.h>
#include <deque>
#include <unordered_map>
#include "scene-group.hpp"
namespace advss {
class SceneSelection;
class RegexConfig;
struct SceneGroup;
/* Source helpers */

View File

@@ -1,5 +1,5 @@
#include "variable-spinbox.hpp"
#include "advanced-scene-switcher.hpp"
#include "switcher-data.hpp"
#include "utility.hpp"
#include <QLayout>

View File

@@ -1,6 +1,6 @@
#include "websocket-helpers.hpp"
#include "connection-manager.hpp"
#include "advanced-scene-switcher.hpp"
#include "switcher-data.hpp"
#include <QCryptographicHash>
#include <obs-websocket-api.h>