source: mmcs/midialog.h @ 8ad4484

matrices
Last change on this file since 8ad4484 was 9dd61b1, checked in by rboet <rboet@…>, 9 years ago

Avance del proyecto 60%

  • Property mode set to 100644
File size: 325 bytes
Line 
1#ifndef MIDIALOG_H
2#define MIDIALOG_H
3
4#include <QDialog>
5
6namespace Ui {
7class miDialog;
8}
9
10class miDialog : public QDialog
11{
12    Q_OBJECT
13   
14public:
15    explicit miDialog(QWidget *parent = 0);
16    ~miDialog();
17   
18private slots:
19    void on_pushButton_clicked();
20
21private:
22    Ui::miDialog *ui;
23};
24
25#endif // MIDIALOG_H
Note: See TracBrowser for help on using the repository browser.