mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-08-03 19:37:45 -04:00
24 lines
346 B
C++
24 lines
346 B
C++
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include "Application.h"
|
|
|
|
class OtherLogsPage;
|
|
|
|
class ViewLogWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ViewLogWindow(QWidget* parent = nullptr);
|
|
|
|
signals:
|
|
void isClosing();
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent*) override;
|
|
|
|
private:
|
|
OtherLogsPage* m_page;
|
|
};
|