Commit 25d5d637 authored by captainwong's avatar captainwong

undef TRACE in log.h

parent 272af1a8
......@@ -26,10 +26,10 @@
//#include "dbghlpapi.h"
#ifdef TRACE
#undef TRACE
#define TRACE CLog::WriteLog
#endif
//#ifdef TRACE
//#undef TRACE
//#define TRACE CLog::WriteLog
//#endif
#define IMPLEMENT_CLASS_LOG_STATIC_MEMBER \
CRITICAL_SECTION CLog::m_cs;\
......
#pragma once
#include "C:/Global/LocalLock.h"
#include "C:/Global/mtverify.h"
#include "C:/Global/FileOper.h"
#include "C:/Global/Log.h"
#define LOG CLog::WriteLog
#define LOGA CLog::WriteLogA
#define LOGW CLog::WriteLogW
class LogFunction {
private:
const char* _func_name;
public:
LogFunction(const char* func_name) : _func_name(func_name) { LOGA("%s in\n", _func_name); }
~LogFunction() { LOGA("%s out\n", _func_name); }
};
#define LOG_FUNCTION(func_name) LogFunction _log_function_object(func_name);
#define LOG_FUNCTION_AUTO LOG_FUNCTION(__FUNCTION__)
#include "C:/Global/MyWSAError.h"
#include "c:/Global/observer_macro.h"
#define NAMESPACE_END };
#define DECLARE_UNCOPYABLE(classname) \
private:\
classname(const classname&) {}\
classname& operator=(const classname&) {}
// singleton
#define DECLARE_SINGLETON(class_name) \
private: \
class_name(); \
static class_name* m_pInstance; \
static CLock m_lock4Instance; \
public: \
static class_name* GetInstance() { \
m_lock4Instance.Lock(); \
if (m_pInstance == NULL){ \
static class_name obj; \
m_pInstance = &obj; \
} \
m_lock4Instance.UnLock(); \
return m_pInstance; \
}
#define IMPLEMENT_SINGLETON(class_name) \
class_name* class_name::m_pInstance = NULL; \
CLock class_name::m_lock4Instance;
// getter & setter
#define DECLARE_GETTER(type, val) \
type get##val() const { \
return val; \
}
#define DECLARE_SETTER(type, val) \
void set##val(type param) { \
val = param;\
}
#define DEALARE_GETTER_SETTER(type, val) \
DECLARE_GETTER(type, val) \
DECLARE_SETTER(type, val)
#define DEALARE_GETTER_SETTER_INT(val) \
DECLARE_GETTER(int, val) \
DECLARE_SETTER(int, val)
#define DECLARE_GETTER_STRING(val) \
const wchar_t* get##val() const { \
return val; \
}
#define DECLARE_SETTER_STRING(val) \
void set##val(const wchar_t* param) { \
if (param) { \
int len = wcslen(param); \
if (val) { delete[] val; } \
val = new wchar_t[len + 1]; \
wcscpy_s(val, len + 1, param); \
} else { \
if (val) { delete[] val; } \
val = new wchar_t[1]; \
val[0] = 0; \
} \
}
#define DECLARE_GETTER_SETTER_STRING(val) \
DECLARE_GETTER_STRING(val); \
DECLARE_SETTER_STRING(val);
#define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment