Skip to content
Snippets Groups Projects

Draft: Resolve "Pfade zu Ressourcen abhängig von working dir"

1 unresolved thread
1 file
+ 13
0
Compare changes
  • Side-by-side
  • Inline
+ 13
0
#pragma once
#include <string>
namespace utils {
/**
* @brief Given a relative path to the executable, the absolute path is returned
*
* @param path The relative path
* @return std::string The absolute path
*/
std::string absolutePath(std::string path);
}
Loading