diff -r 13d7c31c74e0 -r b183ec05bd8c remotemgmt_plat/syncml_ds_error_reporting_api/tsrc/QtSyncStatusSpy/qtsyncstatuslog.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/remotemgmt_plat/syncml_ds_error_reporting_api/tsrc/QtSyncStatusSpy/qtsyncstatuslog.h Tue Aug 31 16:04:06 2010 +0300 @@ -0,0 +1,24 @@ +#ifndef QTSYNCSTATUSLOG_H +#define QTSYNCSTATUSLOG_H + +#include +#include + +class QtSyncStatusLog : public QObject +{ +public: + QtSyncStatusLog(); + ~QtSyncStatusLog(); + + void clear(); + void write(QString& string); + QStringList lines(); + +private: + void open(); + +private: + QFile mLogFile; +}; + +#endif // QTSYNCSTATUSLOG_H