game_list: Use forward declarations where applicable

Reduces the number of header dependencies propagated by the header file.
This commit is contained in:
Lioncash 2017-12-16 13:09:55 -05:00
parent 125f5d1e68
commit 8e53599deb
No known key found for this signature in database
GPG key ID: 419930C33C5AB6CC
2 changed files with 25 additions and 15 deletions

View file

@ -4,22 +4,22 @@
#pragma once
#include <QFileSystemWatcher>
#include <QHBoxLayout>
#include <QLabel>
#include <QLineEdit>
#include <QModelIndex>
#include <QSettings>
#include <QStandardItem>
#include <QStandardItemModel>
#include <QString>
#include <QToolButton>
#include <QTreeView>
#include <QVBoxLayout>
#include <QWidget>
#include "main.h"
#include "common/common_types.h"
class GameListWorker;
class GMainWindow;
class QFileSystemWatcher;
class QHBoxLayout;
class QLabel;
class QLineEdit;
class QModelIndex;
class QStandardItem;
class QStandardItemModel;
class QTreeView;
class QToolButton;
class QVBoxLayout;
class GameList : public QWidget {
Q_OBJECT