File indexing completed on 2023-10-01 04:15:48
0001 /* 0002 SPDX-FileCopyrightText: 2006 Matthew Williams <matt@milliams.com> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef SCORESDIALOG_H 0008 #define SCORESDIALOG_H 0009 0010 #include "ui_scoreswidget.h" 0011 0012 #include <QDialog> 0013 0014 class ScoresDialog : public QDialog, public Ui::ScoresWidget 0015 { 0016 public: 0017 explicit ScoresDialog(QWidget *parent = nullptr); 0018 }; 0019 0020 #endif // SCORESDIALOG_H