You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
neroshop/tests/main_window.hpp

28 lines
376 B

#ifndef MAIN_WINDOW_HPP
#define MAIN_WINDOW_HPP
#include <iostream>
#include <QMainWindow>
namespace gui {
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow();
//explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_actionExit_triggered();
private:
//gui::MainWindow *ui;
};
}
#endif // MAINWINDOW_H