summaryrefslogtreecommitdiff
path: root/noncore/net/opiestumbler/stumblersettings.h
blob: f444eba6f5e22318a5c8cedaf5e0c66976371eb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef STUMBLERSETTINGS_H
#define STUMBLERSETTINGS_H

#include <qdialog.h>

class Config;
class QLineEdit;

class StumblerSettings: public QDialog {

public:
    StumblerSettings(QWidget* parent = 0, const char* name = 0, bool modal = false, WFlags f = 0);
    ~StumblerSettings();

protected slots:
    void accept();
protected:
    Config *m_config;
    QLineEdit *m_interface;
};

#endif