mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
15 lines
229 B
C++
15 lines
229 B
C++
class ManifestViewerWindow : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ManifestViewerWindow();
|
|
|
|
void synchronize();
|
|
|
|
private:
|
|
QVBoxLayout *layout;
|
|
QPlainTextEdit *textEdit;
|
|
|
|
};
|
|
|
|
extern ManifestViewerWindow *manifestViewerWindow;
|