mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
21 lines
370 B
C++
21 lines
370 B
C++
|
|
#ifndef DLG_LOAD_DECK_H
|
|
#define DLG_LOAD_DECK_H
|
|
|
|
#include <QFileDialog>
|
|
|
|
/**
|
|
* The file dialog for "Load Deck" operations.
|
|
* Handles remembering the most recently used deck loading directory.
|
|
*/
|
|
class DlgLoadDeck : public QFileDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
void actAccepted();
|
|
|
|
public:
|
|
explicit DlgLoadDeck(QWidget *parent = nullptr);
|
|
};
|
|
|
|
#endif // DLG_LOAD_DECK_H
|