]> git.siccegge.de Git - frida/frida.git/blob - src/gui/dialogs/SimpleStringDialog.hxx
Add missing Include-Guards to dialogs
[frida/frida.git] / src / gui / dialogs / SimpleStringDialog.hxx
1 #ifndef INCLUDE__SimpleStringDialog_hxx
2 #define INCLUDE__SimpleStringDialog_hxx
3
4 #include "qt.hxx"
5
6 class SimpleStringDialog : public QDialog {
7 Q_OBJECT
8 public:
9 SimpleStringDialog(const QString& title);
10
11 QString result();
12 private:
13 QLineEdit * edit;
14 };
15
16 #endif /* INCLUDE__SimpleStringDialog_hxx */