Skip to content
Snippets Groups Projects
util.hpp 345 B
Newer Older
Josef Schmeißer's avatar
Josef Schmeißer committed
#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));
}
//---------------------------------------------------------------------------