Files
OpenSpace/modules/dataloader/helpers.h
T
2018-09-18 16:59:59 +02:00

12 lines
341 B
C++

#include <iostream>
namespace openspace::dataloader::helpers {
std::string getDirLeaf(std::string dir);
std::string getFileWithExtensionFromItemFolder(std::string absPathToItem, std::string extension);
std::string getFileBaseName(std::string absPathToFile);
void replaceDoubleBackslashesWithForward(std::string &path);
}