wxhelper/src/config.h
2023-04-08 09:02:31 +08:00

15 lines
209 B
C++

#ifndef WXHELPER_CONFIG_H_
#define WXHELPER_CONFIG_H_
namespace wxhelper{
class Config
{
private:
/* data */
public:
Config(/* args */);
~Config();
};
}
#endif