blob: 27548e69f002e05ceee3957da7a2422221c3016c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef KL_HIGHSCORES_H
#define KL_HIGHSCORES_H
#include "base/highscores.h"
class KLHighscores : public BaseHighscores
{
public:
KLHighscores();
private:
bool isStrictlyLess(const KExtHighscore::Score &,
const KExtHighscore::Score &) const;
void additionalQueryItems(KURL &url, const KExtHighscore::Score &) const;
};
#endif
|