summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/wlan/wlanimp.h
blob: 79e931dcacd91d02baa492453d1a304ad6fd2cdb (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"

#include <qpe/config.h>

class WLANImp : public WLAN { 
  Q_OBJECT

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

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

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

#endif