summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/wlan/wlanrun.h
blob: 25d5b96f778435acf252072164df567eee20f5a9 (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
37
#ifndef WLANRUN_H
#define WLANRUN_H

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

class WLanRun  : public AsDevice {

public :

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

      virtual AsDevice * device( void ) 
        { return (AsDevice *)this; }
      virtual AsDevice * asDevice( void ) 
        { return (AsDevice *)this; }

protected :

      void detectState( NodeCollection *  );
      bool setState( NodeCollection *, Action_t, bool );
      bool canSetState( State_t, Action_t );
      bool handlesInterface( const QString & I );
      bool handlesInterface( const InterfaceInfo & II );

private :

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

#endif