blob: f04c0d2e27e27229231d429f1fb6e5293928f455 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef COMMON_HIGHSCORES_H
#define COMMON_HIGHSCORES_H
#include "base/highscores.h"
#include "lib/libksirtet_export.h"
class LIBKSIRTET_EXPORT CommonHighscores : public BaseHighscores
{
public:
CommonHighscores();
private:
void convertLegacy(uint level);
bool isStrictlyLess(const KExtHighscore::Score &,
const KExtHighscore::Score &) const;
void additionalQueryItems(KURL &, const KExtHighscore::Score &) const;
};
#endif
|