mirror of
https://github.com/ttttupup/wxhelper.git
synced 2025-04-20 03:49:17 +08:00
18 lines
231 B
C++
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 |