Forked from an inaccessible project.
-
Josef Schmeißer authoredJosef Schmeißer authored
util.hpp 345 B
#include <string>
//---------------------------------------------------------------------------
inline std::string getDir(const std::string &file)
/// Returns path to file in 'file'
{
size_t found = file.find_last_of("/\\");
return (file.substr(0, found));
}
//---------------------------------------------------------------------------