summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/wlan/wlanrun.h
blob: e3e77351bdf033a32591549731483807ca1bdce8 (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
29
30
31
32
33
34
35
36
#ifndef WLANRUN_H
#define WLANRUN_H

#include <qregexp.h>
#include <netnode.h>
#include "wlandata.h"

class WLanRun  : public RuntimeInfo {

public :

      WLanRun( ANetNodeInstance * NNI, WLanData & Data ) : 
               RuntimeInfo( NNI ),
               Pat( "wlan[0-9]" ) {
      }

      virtual RuntimeInfo * device( void ) 
        { return this; }

      bool handlesInterface( const QString & I );
      bool handlesInterface( const InterfaceInfo & II );

      State_t detectState( void );

protected :

      QString setMyState( NetworkSetup * , Action_t, bool );

private :

      InterfaceInfo * getInterface( void );
      QRegExp Pat;
      WLanData * Data;
};

#endif