/* trace.cc */ #include "trace.h" #include namespace MyModule { /* ----------------------------------------------------------------------- */ #ifndef TRACEVIEW void trace_start (QString text) { } void trace_open (QString text) { } void trace_close () { } void trace (QString text) { } void trace_alert (QString text) { } #endif /* ----------------------------------------------------------------------- */ } // end of namespace