ps4delta/code/delta_qt/ui/logframe.h
Force67 39720568fa Last changes as of 02/05/20
-includes a new filesystem
-complete rewrite of the PRX loader (still in progress)
-rewritten kernel infrastructure
-and much more
2020-02-05 13:58:11 +01:00

26 lines
No EOL
403 B
C++

#pragma once
/*
* PS4Delta : PS4 emulation and research project
*
* Copyright 2019-2020 Force67.
* For information regarding licensing see LICENSE
* in the root of the source tree.
*/
#include <QPlainTextEdit>
class qtlogSink;
class logFrame : public QPlainTextEdit {
Q_OBJECT
public:
logFrame();
void addLine(const QString&);
private:
void update();
qtlogSink* sink;
};