mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-06 02:19:24 +08:00
15 lines
209 B
C
15 lines
209 B
C
|
#ifndef WXHELPER_CONFIG_H_
|
|||
|
#define WXHELPER_CONFIG_H_
|
|||
|
|
|||
|
namespace wxhelper{
|
|||
|
|
|||
|
class Config
|
|||
|
{
|
|||
|
private:
|
|||
|
/* data */
|
|||
|
public:
|
|||
|
Config(/* args */);
|
|||
|
~Config();
|
|||
|
};
|
|||
|
}
|
|||
|
#endif
|