RetroShare/plugins/patience_plugin/Patience/Highscore.h

28 lines
434 B
C
Raw Normal View History

#ifndef HIGHSCORE_H
#define HIGHSCORE_H
#include <QDialog>
#include <QString>
#include "ui_Highscore.h"
class QSettings;
class Highscore : public QDialog, private Ui::Highscore
{
Q_OBJECT
public:
Highscore(QWidget *parent);
virtual ~Highscore();
bool neues_ergebnis(int, long);
void registriere_einstellungen(QSettings*);
void einstellungen_laden();
void einstellungen_speichern();
private:
QSettings *einstellungen;
};
#endif