mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
21 lines
362 B
C++
21 lines
362 B
C++
#pragma once
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class dConfig {
|
|
public:
|
|
dConfig(const std::string& filepath);
|
|
~dConfig(void);
|
|
|
|
const std::string& GetValue(std::string key);
|
|
|
|
private:
|
|
void ProcessLine(const std::string& line);
|
|
|
|
private:
|
|
std::vector<std::string> m_Keys;
|
|
std::vector<std::string> m_Values;
|
|
std::string m_EmptyString;
|
|
};
|