Health-GPS 3.0.0.0
Global Health Policy Simulation model (Health-GPS)
Loading...
Searching...
No Matches
program_dirs.h
Go to the documentation of this file.
1#pragma once
2
3#include <filesystem>
4
5namespace hgps {
7std::filesystem::path get_program_directory();
8
10std::filesystem::path get_program_path();
11
13std::filesystem::path get_cache_directory();
14
16std::filesystem::path get_temporary_directory();
17} // namespace hgps
Top-level namespace for Health-GPS Console host application.
Definition command_options.cpp:8
std::filesystem::path get_program_directory()
Get the path to the directory of the currently executing program.
Definition program_dirs.cpp:24
std::filesystem::path get_temporary_directory()
A temporary directory for Health-GPS.
Definition program_dirs.cpp:48
std::filesystem::path get_cache_directory()
The cache folder for Health-GPS.
Definition program_dirs.cpp:44
std::filesystem::path get_program_path()
Get the path to the currently executing program.
Definition program_dirs.cpp:26