Gem Illuminator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros
highscore.h
Go to the documentation of this file.
1 #ifndef HIGHSCORE_H
2 #define HIGHSCORE_H
3 
4 #include <QObject>
5 
6 #include "fileio.h"
7 
11 class Highscore : public FileIO
12 {
13  Q_OBJECT
14 public:
15  explicit Highscore(QObject *parent = 0);
16  ~Highscore();
17 
18 signals:
19 
20 };
21 
22 #endif // HIGHSCORE_H
~Highscore()
Definition: highscore.cpp:7
The Highscore is only a semantic class to clarify that this fileIO is a Highscore.
Definition: highscore.h:11
Highscore(QObject *parent=0)
Definition: highscore.cpp:3
The FileIO class provides platform independent file reading for resource files used. The file that should be read is specified by name and FileIO will load it from platform dependent location.
Definition: fileio.h:10