Categorylist class
[speedfreak] / Client / categorylist.h
1 /*
2  * Categorylist
3  *
4  * @author     Olavi Pulkkinen <olavi.pulkkinena@fudeco.com>
5  * @copyright  (c) 2010 Speed Freak team
6  * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
7  */
8
9 #ifndef CATEGORYLIST_H
10 #define CATEGORYLIST_H
11
12 #include <QStringList>
13
14 class CategoryList : public QObject
15 {
16 public:
17     CategoryList();
18     ~CategoryList();
19     QStringList getCategoryList();
20     QString getTopList( QString category, int size);
21
22 private:
23     QStringList categoryList;
24     QString top10AccelerationList;
25     QString top10SpeedList;
26     QString top10GforceList;
27 };
28
29 #endif // CATEGORYLIST_H