blob: d0520ddd8ff79da6d2e15ac28dcbcaf924fdfce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <string>
class Config {
public:
Config(int argc, char* argv[]);
std::string get_executable_path();
std::string get_file_path();
private:
std::string m_executable_path;
};
|