mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
22 lines
323 B
C++
22 lines
323 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QHash>
|
|
|
|
namespace Ui {
|
|
class ViewLogDialog;
|
|
}
|
|
|
|
class OtherLogsPage;
|
|
|
|
class ViewLogDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ViewLogDialog(QWidget* parent = nullptr);
|
|
~ViewLogDialog();
|
|
|
|
private:
|
|
Ui::ViewLogDialog* ui;
|
|
OtherLogsPage* m_page;
|
|
};
|