[moco-log] Extract LoggingContext class (#6999)
author박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Thu, 29 Aug 2019 03:48:35 +0000 (12:48 +0900)
committer박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Thu, 29 Aug 2019 03:48:35 +0000 (12:48 +0900)
commit2a710aa9c7c9a4f0e0151bb4383f618897e05169
treea95c7253ebb89b27cd0c8901144ec6d029d501db
parentf091f502508556ecf08f6b1771a93ae13d1f1c3f
[moco-log] Extract LoggingContext class (#6999)

LoggingContext class is currently declared in Log.h, and thus it is
impossible to access this class declaration without including macros
defined in Log.h, which leads to macro name conflicts in some case.

This commit introduce a dedicated file for LoggingContext class to
allow users to access LoggingContext class without the risk of macro
name conflicts.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
compiler/moco-log/include/moco/Log.h
compiler/moco-log/include/moco/LoggingContext.h [new file with mode: 0644]
compiler/moco-log/src/Log.cpp
compiler/moco-log/src/LoggingContext.cpp [new file with mode: 0644]