Qt: Implement game list sorting

This commit is contained in:
Connor McLaughlin
2020-01-08 15:01:04 +10:00
parent 64426a0be2
commit 2611e64459
2 changed files with 72 additions and 2 deletions

View File

@@ -4,6 +4,7 @@
#include <QtWidgets/QTableView>
class GameListModel;
class GameListSortModel;
class QtHostInterface;
@@ -32,5 +33,6 @@ private:
GameList* m_game_list = nullptr;
GameListModel* m_table_model = nullptr;
GameListSortModel* m_table_sort_model = nullptr;
QTableView* m_table_view = nullptr;
};