Fix sorting of library. Add basic search framework.
[dorian] / platform.h
1 #ifndef PLATFORM_H
2 #define PLATFORM_H
3
4 #include <QString>
5
6 class Platform
7 {
8 public:
9     static QString dbPath();
10     static QString icon(const QString &name);
11     static void restart(char *argv[]);
12 };
13
14 #endif // PLATFORM_H