25 lines
357 B
C++
25 lines
357 B
C++
/*
|
|
* Author: Jun0x01@github.com
|
|
* Date: 2019.05.09
|
|
*/
|
|
#ifndef SU_LOG_INCLUDED
|
|
#define SU_LOG_INCLUDED
|
|
|
|
#include "UGStrConvertor.h"
|
|
|
|
using namespace std;
|
|
|
|
//namespace SuperMap
|
|
//{
|
|
class Log
|
|
{
|
|
public:
|
|
static void Warning(string msg);
|
|
static void Error(string msg);
|
|
static void Debug(string msg);
|
|
|
|
};
|
|
//}
|
|
|
|
#endif
|