wxhelper/src/config.h

17 lines
236 B
C
Raw Normal View History

2023-04-26 09:57:39 +08:00
#ifndef WXHELPER_CONFIG_H_
2023-03-31 21:21:35 +08:00
#define WXHELPER_CONFIG_H_
2023-04-26 09:57:39 +08:00
namespace wxhelper {
2023-03-31 21:21:35 +08:00
2023-04-26 09:57:39 +08:00
class Config {
public:
Config(/* args */);
~Config();
void Initialize();
int GetPort();
private:
int port_;
};
} // namespace wxhelper
2023-03-31 21:21:35 +08:00
#endif