mirror of
https://github.com/FAUSheppy/speech-server-client-qt
synced 2025-12-06 08:51:35 +01:00
14 lines
286 B
C++
14 lines
286 B
C++
#ifndef MULTIVALUEINPUTDIALOG_H
|
|
#define MULTIVALUEINPUTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QMainWindow>
|
|
|
|
class MultiValueInputDialog : public QDialog
|
|
{
|
|
public:
|
|
MultiValueInputDialog(QStringList *inputValueLabels, QWidgetList *inputWidgets);
|
|
};
|
|
|
|
#endif // MULTIVALUEINPUTDIALOG_H
|