mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-19 20:12:10 +01:00
24 lines
530 B
C++
24 lines
530 B
C++
#ifndef PROGRAMPATHS_H
|
|
#define PROGRAMPATHS_H
|
|
|
|
#include <QString>
|
|
|
|
namespace ProgramPaths
|
|
{
|
|
QString mapDir(bool writable = false);
|
|
QString poiDir(bool writable = false);
|
|
QString csvDir(bool writable = false);
|
|
QString demDir(bool writable = false);
|
|
QString styleDir(bool writable = false);
|
|
QString symbolsDir(bool writable = false);
|
|
QString tilesDir();
|
|
QString translationsDir();
|
|
QString ellipsoidsFile();
|
|
QString gcsFile();
|
|
QString pcsFile();
|
|
QString typFile();
|
|
QString renderthemeFile();
|
|
}
|
|
|
|
#endif // PROGRAMPATHS_H
|