mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-23 20:50:59 -05:00
Create namespace globebrowsing.
This commit is contained in:
@@ -36,10 +36,10 @@ namespace {
|
||||
const std::string _loggerCat = "TileDiskCache";
|
||||
}
|
||||
|
||||
|
||||
namespace openspace {
|
||||
const std::string TileDiskCache::CACHE_ROOT = "tilecache";
|
||||
namespace globebrowsing {
|
||||
|
||||
const std::string TileDiskCache::CACHE_ROOT = "tilecache";
|
||||
|
||||
TileDiskCache::TileDiskCache(const std::string& name)
|
||||
: _name(name)
|
||||
@@ -61,7 +61,6 @@ namespace openspace {
|
||||
return FileSys.fileExists(metaFile);
|
||||
}
|
||||
|
||||
|
||||
std::shared_ptr<TileIOResult> TileDiskCache::get(const TileIndex& tileIndex) {
|
||||
File metaDataFile = getMetaDataFile(tileIndex);
|
||||
File dataFile = getDataFile(tileIndex);
|
||||
@@ -120,6 +119,5 @@ namespace openspace {
|
||||
return File(getFilePath(tileIndex) + ".data");
|
||||
}
|
||||
|
||||
|
||||
|
||||
} // namespace globebrowsing
|
||||
} // namespace openspace
|
||||
|
||||
Reference in New Issue
Block a user