source: mmcs/formexportmatrix.h @ bd5e45b

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

Traducción de los botones de diálogo, primer prototipo de matriz La

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