summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/networksettings2/asline.h
blob: ee4de383f7d3fd81e0ebe5e509a27f977c1e8a04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef ASLINE_H
#define ASLINE_H

#include <netnode.h>

// pure virtual (component oriented) interface of any
// plugin that offers a line
class AsLine : public RuntimeInfo {

public :

    AsLine( ANetNodeInstance * NNI ) :
        RuntimeInfo( NNI ) { 
    }

    virtual QString deviceFile( void ) = 0;

};

#endif