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

18 lines
231 B
C++

#ifndef WXHELPER_LOG_H_
#define WXHELPER_LOG_H_
namespace wxhelper{
class Log
{
private:
/* data */
public:
Log(/* args */);
~Log();
void initialize();
};
}
#endif