]> git.siccegge.de Git - frida/frida.git/blob - src/gui/dialogs/SimpleStringDialog.hxx
Move qt.hxx up one directory
[frida/frida.git] / src / gui / dialogs / SimpleStringDialog.hxx
1
2 #include "qt.hxx"
3
4 class SimpleStringDialog : public QDialog {
5 Q_OBJECT
6 public:
7 SimpleStringDialog(const QString& title);
8
9 QString result();
10 private:
11 QLineEdit * edit;
12 };