Add Flickable.
[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 };
14
15 #endif // PLATFORM_H