39 lines
728 B
C++
39 lines
728 B
C++
#ifndef DATAFILE_H
|
|
#define DATAFILE_H
|
|
|
|
#include "system_global.h"
|
|
|
|
class QDir;
|
|
|
|
namespace paysages {
|
|
namespace system {
|
|
|
|
/**
|
|
* Locator of data files.
|
|
*/
|
|
class SYSTEMSHARED_EXPORT DataFile {
|
|
public:
|
|
/**
|
|
* Find a data file.
|
|
*
|
|
* Return the absolute data path, or an empty string if not found.
|
|
*/
|
|
static string findFile(const string &relpath);
|
|
|
|
/**
|
|
* Find a data directory.
|
|
*
|
|
* Return the absolute data path, or an empty string if not found.
|
|
*/
|
|
static string findDir(const string &relpath);
|
|
|
|
private:
|
|
static bool tryDataDir(const QDir &dir);
|
|
static string locateDataDir();
|
|
static string initDataDir();
|
|
static string dataDir;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // DATAFILE_H
|