blob: 63844e51071271e70cc77efd6af30b75506e4531 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef HIGHSCORES_H
#define HIGHSCORES_H
#include <highscore/kexthighscore.h>
using namespace KExtHighscore;
class ExtManager : public Manager
{
public:
ExtManager();
private:
bool isStrictlyLess(const Score &s1, const Score &s2) const;
};
#endif
|