Simulateur Ferroviaire
Reconstruction et visualisation d'un réseau ferroviaire à partir de données GeoJSON — Win32 / WebView2 / Leaflet
Chargement...
Recherche...
Aucune correspondance
PathUtils.h
Aller à la documentation de ce fichier.
1#pragma once
2#include <filesystem>
3#include <windows.h>
4
5static std::filesystem::path executableDirectory()
6{
7 wchar_t path[MAX_PATH];
8 GetModuleFileNameW(nullptr, path, MAX_PATH);
9 return std::filesystem::path(path).parent_path();
10}
static std::filesystem::path executableDirectory()
Definition PathUtils.h:5