mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-14 21:23:52 +01:00
14 lines
294 B
C++
14 lines
294 B
C++
|
#include "debugengine.h"
|
||
|
debugengine::debugengine()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void debugengine::writeToStdErr(const QString &level, const QList<QVariant> &msgs)
|
||
|
{
|
||
|
emit dbgMsgError(level,msgs);
|
||
|
}
|
||
|
void debugengine::writeToStdOut(const QString &level, const QList<QVariant> &msgs)
|
||
|
{
|
||
|
emit dbgMsg(level,msgs);
|
||
|
}
|