15 lines
180 B
C++
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 |