mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 01:15:14 +01:00
19 lines
302 B
C++
19 lines
302 B
C++
#ifndef LOGDOCK_H
|
|
#define LOGDOCK_H
|
|
|
|
#include "dock_widget_base.h"
|
|
#include "ui_ost-log.h"
|
|
|
|
class LogDock : public DockWidgetBase
|
|
{
|
|
public:
|
|
LogDock();
|
|
|
|
void Append(QtMsgType type, const QMessageLogContext &context, const QString &msg);
|
|
|
|
private:
|
|
Ui::ostLog m_logUi;
|
|
};
|
|
|
|
#endif // LOGDOCK_H
|