tizen 2.4 release
[framework/web/wrt-commons.git] / modules / ttrace / src / WrtTrace.cpp
1 #include "WrtTrace.h"
2 #include <ttrace.h>
3
4 namespace WRT{
5
6 WrtTrace::WrtTrace(const char* tag){
7     traceBegin(TTRACE_TAG_WEB, tag);
8 }
9
10 WrtTrace::~WrtTrace(){
11     traceEnd(TTRACE_TAG_WEB);
12 }
13
14 }