mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-25 21:48:57 -05:00
12 lines
341 B
C++
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);
|
|
}
|