wxhelper/src/config.cc

14 lines
283 B
C++
Raw Normal View History

2023-06-26 18:23:47 +08:00
#include "pch.h"
#include "config.h"
namespace wxhelper {
Config::Config(/* args */) {}
Config::~Config() {}
void Config::Initialize() {
port_ = GetPrivateProfileInt("config", "Port", 19088, "./config.ini");
}
int Config::GetPort() { return port_; }
} // namespace wxhelper