paysages3d/src/system/CacheFile.h

25 lines
455 B
C
Raw Normal View History

#ifndef CACHEFILE_H
#define CACHEFILE_H
#include "system_global.h"
namespace paysages {
namespace system {
class SYSTEMSHARED_EXPORT CacheFile {
public:
CacheFile(const std::string &module, const std::string &ext, const std::string &tag1, int tag2, int tag3, int tag4,
int tag5, int tag6);
bool isReadable();
bool isWritable();
2014-09-18 09:39:36 +00:00
std::string getPath();
private:
2014-09-18 09:39:36 +00:00
std::string filepath;
};
}
}
#endif // CACHEFILE_H