14 lines
283 B
C++
14 lines
283 B
C++
![]() |
#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
|