Code Documentation 3.3
Social Network Visualizer
Loading...
Searching...
No Matches
dialogedgedichotomization.h
Go to the documentation of this file.
1
15
16#ifndef DIALOGEDGEDICHOTOMIZATION_H
17#define DIALOGEDGEDICHOTOMIZATION_H
18
19#include <QDialog>
20
21#include "ui_dialogedgedichotomization.h"
22
23
24class DialogEdgeDichotomization : public QDialog
25{
26 Q_OBJECT
27public:
28 explicit DialogEdgeDichotomization (QWidget *parent = Q_NULLPTR);
29public slots:
30 void getUserChoices ();
31signals:
32 void userChoices( qreal threshold);
33private:
34 Ui::DialogEdgeDichotomization ui;
35
36};
37
38
39#endif
Ui::DialogEdgeDichotomization ui
Definition dialogedgedichotomization.h:34
void userChoices(qreal threshold)
void getUserChoices()
Definition dialogedgedichotomization.cpp:33
DialogEdgeDichotomization(QWidget *parent=Q_NULLPTR)
Definition dialogedgedichotomization.cpp:20