mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-09 15:54:47 -07:00
* 1/3 Add .clang-format file and travis compilation check * 2/3 Run clang-format * 3/3 Fix compilation problems due to include reordering * 3bis/3 AfterControlStatement: false
27 lines
570 B
C++
27 lines
570 B
C++
#ifndef DLG_STARTGAME_H
|
|
#define DLG_STARTGAME_H
|
|
|
|
#include <QDialog>
|
|
|
|
class RemoteDeckList_TreeWidget;
|
|
class QModelIndex;
|
|
class AbstractClient;
|
|
class QPushButton;
|
|
class QDialogButtonBox;
|
|
|
|
class DlgLoadRemoteDeck : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
AbstractClient *client;
|
|
RemoteDeckList_TreeWidget *dirView;
|
|
QDialogButtonBox *buttonBox;
|
|
private slots:
|
|
void currentItemChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
|
|
|
public:
|
|
DlgLoadRemoteDeck(AbstractClient *_client, QWidget *parent = 0);
|
|
int getDeckId() const;
|
|
};
|
|
|
|
#endif
|