wxhelper/src/config.h
2023-06-26 18:23:47 +08:00

17 lines
225 B
C++

#ifndef WXHELPER_CONFIG_H_
#define WXHELPER_CONFIG_H_
namespace wxhelper {
class Config {
public:
Config();
~Config();
void Initialize();
int GetPort();
private:
int port_;
};
} // namespace wxhelper
#endif