wxhelper/src/log.h

15 lines
180 B
C
Raw Permalink Normal View History

2023-06-26 18:23:47 +08:00
#ifndef WXHELPER_LOG_H_
#define WXHELPER_LOG_H_
namespace wxhelper {
class Log {
private:
public:
Log();
~Log();
void Initialize();
};
} // namespace wxhelper
#endif