wxhelper/src/config.h

15 lines
209 B
C
Raw Normal View History

2023-03-31 21:21:35 +08:00
#ifndef WXHELPER_CONFIG_H_
#define WXHELPER_CONFIG_H_
namespace wxhelper{
class Config
{
private:
/* data */
public:
Config(/* args */);
~Config();
};
}
#endif