mirror of
https://gitlab.univ-nantes.fr/E164955Z/ptrans.git
synced 2026-08-29 07:40:28 +08:00
20 lines
282 B
C++
20 lines
282 B
C++
#ifndef QUANTIDIALOG_H
|
|
#define QUANTIDIALOG_H
|
|
|
|
|
|
#include <ui_QuantiDialog.h>
|
|
|
|
//Qt
|
|
#include <QDialog>
|
|
|
|
class QuantiDialog : public QDialog, public Ui::QuantiDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit QuantiDialog(QWidget* parent = 0);
|
|
|
|
|
|
public slots:
|
|
void updateLabelValues();
|
|
};
|
|
#endif |