blob: 59372ed66f9f708e1f89b06e5e93b8f469b3d26b (
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 <kexthighscore.h>
using namespace KExtHighscore;
class ExtManager : public Manager
{
public:
ExtManager();
private:
bool isStrictlyLess(const Score &s1, const Score &s2) const;
};
#endif
|