Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
25d5d637
Commit
25d5d637
authored
Mar 07, 2015
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
undef TRACE in log.h
parent
272af1a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
103 additions
and
4 deletions
+103
-4
Log.h
Log.h
+4
-4
global.h
global.h
+99
-0
No files found.
Log.h
View file @
25d5d637
...
...
@@ -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;\
...
...
global.h
0 → 100644
View file @
25d5d637
#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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment