source: mmcs/formexportmatrix.h @ e506dab

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

agregada funcion para exportar las matrices en csv

  • Property mode set to 100644
File size: 436 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 *MatrixName;
19    QLineEdit *ExportLine;
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.