service/filesystem: Use forward declarations where applicable

Avoids the need to rebuild multiple source files if the filesystem code
headers change.

This also gets rid of a few instances of indirect inclusions being
relied upon
This commit is contained in:
Lioncash
2018-08-20 20:36:36 -04:00
parent 96463d0a55
commit 477eee3993
9 changed files with 28 additions and 5 deletions

View File

@ -6,12 +6,15 @@
#include <array>
#include <atomic>
#include <map>
#include <memory>
#include <utility>
#include <QImage>
#include <QRunnable>
#include <QStandardItem>
#include <QString>
#include "common/string_util.h"
#include "core/file_sys/content_archive.h"
#include "ui_settings.h"
#include "yuzu/util/util.h"