wxhelper/src/log.h
2023-06-26 18:23:47 +08:00

15 lines
180 B
C++

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