mirror of
https://github.com/ttttupup/wxhelper.git
synced 2025-08-02 22:07:35 +08:00
17 lines
225 B
C++
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 |