This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Simon Stuerz 42027c8cd0 rc 433 receiver working
lib added logWriter
2013-08-18 13:47:18 +02:00

27 lines
371 B
C++

#ifndef LOGWRITER_H
#define LOGWRITER_H
#include <QObject>
#include <QFile>
class LogWriter : public QObject
{
Q_OBJECT
public:
explicit LogWriter(QObject *parent = 0);
enum MessageType{
INFO = 0x1,
ERROR = 0x2
};
signals:
public slots:
void write(MessageType messageType, QString logMessage);
};
#endif // LOGWRITER_H