mirror of
https://gitlab.univ-nantes.fr/E164955Z/ptrans.git
synced 2026-08-30 00:00:26 +08:00
13 lines
148 B
C++
13 lines
148 B
C++
|
|
#include "KmeansDlg.h"
|
||
|
|
|
||
|
|
|
||
|
|
#include <QVariant>
|
||
|
|
KmeansDlg::KmeansDlg(QWidget* parent)
|
||
|
|
: QDialog(parent)
|
||
|
|
, Ui::KmeansDialog()
|
||
|
|
{
|
||
|
|
|
||
|
|
setupUi(this);
|
||
|
|
|
||
|
|
}
|