summaryrefslogtreecommitdiff
path: root/noncore/net/opiestumbler/stumblersettings.h
blob: 997fc853f51e9d2538d227b81c1a58710f03f3f0 (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