mirror of
https://github.com/Force67/ps4delta.git
synced 2025-04-02 11:01:45 -04:00
20 lines
No EOL
247 B
C++
20 lines
No EOL
247 B
C++
#pragma once
|
|
|
|
// Copyright (C) Force67 2019
|
|
|
|
#include <QPlainTextEdit>
|
|
|
|
class qtlogSink;
|
|
|
|
class logFrame : public QPlainTextEdit {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
logFrame();
|
|
void addLine(const QString &);
|
|
|
|
private:
|
|
void update();
|
|
|
|
qtlogSink *sink;
|
|
}; |