mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-05 18:09:24 +08:00
17 lines
236 B
C++
17 lines
236 B
C++
#ifndef WXHELPER_CONFIG_H_
|
|
#define WXHELPER_CONFIG_H_
|
|
|
|
namespace wxhelper {
|
|
|
|
class Config {
|
|
public:
|
|
Config(/* args */);
|
|
~Config();
|
|
void Initialize();
|
|
int GetPort();
|
|
|
|
private:
|
|
int port_;
|
|
};
|
|
} // namespace wxhelper
|
|
#endif |