Files
renderdoc/qrenderdoc/Windows/MainWindow.h
T
baldurk 5f28b745a2 Format code according to newly added clang-format
_  /)
                 mo / )
                 |/)\)
                  /\_
                  \__|=
                 (    )
                 __)(__
           _____/      \\_____
          |  _     ___   _   ||
          | | \     |   | \  ||
          | |  |    |   |  | ||
          | |_/     |   |_/  ||
          | | \     |   |    ||
          | |  \    |   |    ||
          | |   \. _|_. | .  ||
          |                  ||
          |repository history||
          |                  ||
  *       | *   **    * **   |**      **
   \))ejm97/.,(//,,..,,\||(,,.,\\,.((//
2016-05-22 19:41:53 +02:00

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