summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/wlan/wlanimp.h
blob: 8e355ce59e4efe1374f420636ee17f1e22849c77 (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
#ifndef WLANIMP_H
#define WLANIMP_H

#include "wlan.h"

class Config;

class WLANImp : public WLAN { 
  Q_OBJECT

public:
  WLANImp( Config& cfg, QWidget* parent = 0, const char* name = 0);

protected:
  void accept();
  void done ( int r );

private:
  void readConfig();
  bool writeConfig();
  bool writeWirelessOpts( Config &cfg, QString scheme = "*" );
  bool writeWlanngOpts( Config &cfg, QString scheme = "*" );
  Config& config;
};

#endif