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