mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
5f28b745a2
_ /)
mo / )
|/)\)
/\_
\__|=
( )
__)(__
_____/ \\_____
| _ ___ _ ||
| | \ | | \ ||
| | | | | | ||
| |_/ | |_/ ||
| | \ | | ||
| | \ | | ||
| | \. _|_. | . ||
| ||
|repository history||
| ||
* | * ** * ** |** **
\))ejm97/.,(//,,..,,\||(,,.,\\,.((//
34 lines
461 B
C++
34 lines
461 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <stdint.h>
|
|
#include <QMainWindow>
|
|
|
|
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_About_triggered();
|
|
void on_action_Open_Log_triggered();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
Core *m_Core;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|