Project Gutenberg downloads work end-to-end.
[dorian] / platform.h
1 #ifndef PLATFORM_H
2 #define PLATFORM_H
3
4 #include <QString>
5
6 /** Platform abstractions. */
7 class Platform
8 {
9 public:
10     static QString dbPath();
11     static QString icon(const QString &name);
12     static void restart(char *argv[]);
13     static QString version();
14     static QString downloadDir();
15 };
16
17 #endif // PLATFORM_H