X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fintegration-api%2Ftrace.h;h=c884a71a9d4d42df33842c227b3b6524d987829d;hb=8bccadc96b3773fb10c562a5ccdf1b071b2efe8e;hp=804effbf4b09a789a883594c9c5e978df9c57cfd;hpb=a6832ac40f318396b2277a48d142bff5aa7adaf5;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/integration-api/trace.h b/dali/integration-api/trace.h index 804effb..c884a71 100644 --- a/dali/integration-api/trace.h +++ b/dali/integration-api/trace.h @@ -38,7 +38,7 @@ namespace Trace * @param start a bool to indicate start (true) or end (false) of the tracing / logging * @param tag a unique event tag name */ -DALI_IMPORT_API void LogContext( bool start, const char* tag ); +DALI_CORE_API void LogContext( bool start, const char* tag ); /** * typedef for the LogContextFunction function. @@ -51,7 +51,7 @@ typedef void ( *LogContextFunction )( bool start, const char* tag ); * The LogContextFunction function can be different for each thread. * @param LogContextFunction the Log Context function to install */ -DALI_IMPORT_API void InstallLogContextFunction( const LogContextFunction& logContextFunction ); +DALI_CORE_API void InstallLogContextFunction( const LogContextFunction& logContextFunction ); /******************************************************************************** * Filter * @@ -66,7 +66,7 @@ DALI_IMPORT_API void InstallLogContextFunction( const LogContextFunction& logCon * It provides the ability to turn tracing on or off. * */ -class DALI_IMPORT_API Filter +class DALI_CORE_API Filter { public: @@ -153,7 +153,7 @@ private: * and uses filter object which in tun routes the tracing via the platform abstraction's LogMessage. * */ -class DALI_IMPORT_API Tracer final +class DALI_CORE_API Tracer final { public: Tracer( Filter* filter, const char* tag );