You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|