aboutsummaryrefslogtreecommitdiffstats
path: root/wpa_supplicant/wpa_gui-qt4/stringquery.h
blob: 9d6bffd3e7b62c783b22d65335fac525a7ea746f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * wpa_gui - StringQuery class
 * Copyright (c) 2009, Atheros Communications
 *
 * This software may be distributed under the terms of the BSD license.
 * See README for more details.
 */

#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 /* STRINGQUERY_H */