summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/ppp/ppp_NN.h
blob: a9335239b9efc25e54a202a07fd03f1e45b3d270 (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
38
39
40
41
42
43
44
#ifndef PPP_NETNODE_H
#define PPP_NETNODE_H

#include "netnode.h"

class APPP;

class PPPNetNode : public ANetNode{

    Q_OBJECT

public:

    PPPNetNode();
    virtual ~PPPNetNode();

    virtual const QString pixmapName() 
      { return "ppp"; }

    virtual const QString nodeName() 
      { return tr("PPP Connection"); }

    virtual const QString nodeDescription() ;

    virtual ANetNodeInstance * createInstance( void );

    virtual const char ** needs( void );
    virtual const char * provides( void );

    virtual bool generateProperFilesFor( ANetNodeInstance * NNI );
    virtual bool hasDataFor( const QString & S );
    virtual bool generateDataForCommonFile( 
        SystemFile & SF, long DevNr, ANetNodeInstance * NNI );

private:

};

extern "C"
{
  void create_plugin( QList<ANetNode> & PNN );
};

#endif