12345678910111213141516171819202122232425262728 |
- #ifndef STRINGQUERY_H
- #define STRINGQUERY_H
- #include <QDialog>
- #include <QLineEdit>
- #include <QGridLayout>
- class StringQuery : public QDialog
- {
- Q_OBJECT
- public:
- StringQuery(QString label);
- QString get_string();
- private:
- QLineEdit *edit;
- };
- #endif
|