mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 18:09:59 +03:00
12 lines
No EOL
206 B
C++
12 lines
No EOL
206 B
C++
#pragma once
|
|
#include <QTreeView>
|
|
|
|
class Mod;
|
|
|
|
class ModListView: public QTreeView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ModListView ( QWidget* parent = 0 );
|
|
virtual void setModel ( QAbstractItemModel* model );
|
|
}; |