syncthingtray/cli/jsconsole.h

17 lines
266 B
C
Raw Permalink Normal View History

#ifndef CLI_JS_CONSOLE_H
#define CLI_JS_CONSOLE_H
#include <QObject>
class JSConsole : public QObject
{
Q_OBJECT
public:
explicit JSConsole(QObject *parent = nullptr);
2020-03-08 13:50:32 +01:00
public Q_SLOTS:
void log(const QString &msg) const;
};
#endif // CLI_JS_CONSOLE_H