mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
33 lines
429 B
C++
33 lines
429 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include <stdint.h>
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class Core;
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
private:
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(Core *core);
|
|
~MainWindow();
|
|
|
|
private slots:
|
|
void on_action_Exit_triggered();
|
|
|
|
void on_action_Open_Log_triggered();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
Core *m_Core;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|