mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-29 07:19:28 -05:00
10 lines
275 B
C++
10 lines
275 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);
|
|
}
|