Olive
path.h
1 #ifndef PATH_H
2 #define PATH_H
3 
4 #include <QString>
5 #include <QDir>
6 
7 QString get_app_path();
8 QString get_data_path();
9 QDir get_data_dir();
10 QString get_config_path();
11 QDir get_config_dir();
12 QList<QString> get_effects_paths();
13 QList<QString> get_language_paths();
14 
15 // generate hash algorithm used to uniquely identify files
16 QString get_file_hash(const QString& filename);
17 
18 #endif // PATH_H