paysages3d/src/core/CacheFile.h

24 lines
395 B
C++

#pragma once
#include "core_global.h"
#include <string>
namespace paysages {
namespace system {
class CORESHARED_EXPORT CacheFile {
public:
CacheFile(const string &module, const string &ext, const string &tag1, int tag2, int tag3, int tag4, int tag5,
int tag6);
bool isReadable();
bool isWritable();
string getPath();
private:
string filepath;
};
}
}