wPlot2D version: 0.1.0
A lightweight C++ library for clear and customizable 2D scientific plots.
Loading...
Searching...
No Matches
wPathUtils.hpp
Go to the documentation of this file.
1/*
2+---------------------------------------------------------------------------------------------------------------------------------------------------+
3Created by Wilfried Koch.
4Copyright @ 2025 Wilfried Koch. All rights reserved.
5+---------------------------------------------------------------------------------------------------------------------------------------------------+
6*/
7
8#ifndef W_PATH_UTILS_HPP
9#define W_PATH_UTILS_HPP
10
11#include <string>
12
13namespace wEngine
14{
15
45 {
46 public:
59 [[nodiscard]] static std::string getExecutablePath( );
60
70 [[nodiscard]] static std::string getExecutableDir( );
71 };
72
73}//End of namespace wEngine
74
75#endif
Utility class providing static functions for managing executable and resource paths across platforms.
Definition wPathUtils.hpp:45
static std::string getExecutableDir()
Returns the directory containing the current executable.
Definition wPathUtils.cpp:75
static std::string getExecutablePath()
Returns the absolute path to the current executable.
Definition wPathUtils.cpp:29
Definition wColorComponent.cpp:9