You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/klickety/highscores.h

19 lines
369 B

#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