Warning, file /games/kreversi/src/highscores.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2004 Nicolas HADACEK (hadacek@kde.org) 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef HIGHSCORES_H 0008 #define HIGHSCORES_H 0009 0010 #include <QStringList> 0011 #include "kexthighscore.h" 0012 0013 namespace KExtHighscore 0014 { 0015 0016 class ExtManager : public Manager 0017 { 0018 public: 0019 ExtManager(); 0020 0021 private: 0022 QString gameTypeLabel(uint gameTye, LabelType) const override; 0023 QStringList m_typeLabels; 0024 }; 0025 0026 } 0027 0028 #endif