1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-08 23:54:14 +01:00

18 lines
556 B
C
Raw Normal View History

#ifndef DEBUGENGINE_H
#define DEBUGENGINE_H
#include "qxtbasicstdloggerengine.h"
#include <QObject>
class debugengine : public QObject, public QxtBasicSTDLoggerEngine {
Q_OBJECT
public:
debugengine();
protected:
void writeToStdErr(const QString & level, const QList<QVariant> & msgs);
void writeToStdOut(const QString & level, const QList<QVariant> & msgs);
signals:
void dbgMsgError(const QString & level, const QList<QVariant> & msgs);
void dbgMsg(const QString & level, const QList<QVariant> & msgs);
};
#endif // DEBUGENGINE_H