summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/vpn/vpnrun.h
blob: 9a55625568872a01b4649540fe3680f2700121ff (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 VPNRUN_H
#define VPNRUN_H

#include <netnode.h>
#include "vpndata.h"

class VPNRun  : public RuntimeInfo {

public :

      VPNRun( ANetNodeInstance * NNI, VPNData & Data ) : 
              RuntimeInfo( NNI )
        { }

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

      State_t detectState( void )
        { return Unknown; }

protected :

      QString setMyState( NodeCollection * , Action_t, bool )
        { return QString(); }
};

#endif