GameList: Move entry to global scope so it can be forward declared

This commit is contained in:
Connor McLaughlin
2020-01-24 14:50:44 +10:00
parent 183928b0f6
commit 82b4229f1b
5 changed files with 66 additions and 48 deletions

View File

@@ -1,8 +1,10 @@
#pragma once
#include "core/game_list.h"
#include <QtWidgets/QStackedWidget>
#include <QtWidgets/QTableView>
class GameList;
struct GameListEntry;
class GameListModel;
class GameListSortModel;
@@ -19,8 +21,8 @@ public:
void initialize(QtHostInterface* host_interface);
Q_SIGNALS:
void entrySelected(const GameList::GameListEntry* entry);
void bootEntryRequested(const GameList::GameListEntry* entry);
void entrySelected(const GameListEntry* entry);
void bootEntryRequested(const GameListEntry* entry);
private Q_SLOTS:
void onGameListRefreshed();