mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0b78ed6ff8
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2245 b45a01b8-16f6-495d-af2f-9b41ad6348cc
28 lines
434 B
C++
28 lines
434 B
C++
#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
|