[2sem] pb21 done
This commit is contained in:
parent
33fa9edd0f
commit
33dc955c79
7 changed files with 488 additions and 0 deletions
26
2sem/programming basics/21/prac_qt/mainwindow.hpp
Normal file
26
2sem/programming basics/21/prac_qt/mainwindow.hpp
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
// pb_21_100.cpp
|
||||
// Горбацевич Андрей
|
||||
#ifndef MAINWINDOW_HPP
|
||||
#define MAINWINDOW_HPP
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
namespace Ui {
|
||||
class MainWindow;
|
||||
}
|
||||
|
||||
class MainWindow : public QMainWindow {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MainWindow(QWidget *parent = 0);
|
||||
~MainWindow();
|
||||
|
||||
private slots:
|
||||
void on_execPushButton_clicked();
|
||||
|
||||
private:
|
||||
Ui::MainWindow *ui;
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_HPP
|
||||
Loading…
Add table
Add a link
Reference in a new issue