summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profile_NN.h
blob: 1f1ee2c5004db5b50fc7c4893b19e4bcf6d7ae04 (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 PROFILE_NETNODE_H
#define PROFILE_NETNODE_H

#include "netnode.h"

class AProfile;

class ProfileNetNode : public ANetNode{

    Q_OBJECT

public:

    ProfileNetNode();
    virtual ~ProfileNetNode();

    virtual const QString pixmapName() 
      { return "Devices/commprofile"; }

    virtual const QString nodeDescription() ;
    virtual ANetNodeInstance * createInstance( void );
    virtual const char ** needs( void );
    virtual const char * provides( void );

private:

      virtual void setSpecificAttribute( QString & Attr, QString & Value );
      virtual void saveSpecificAttribute( QTextStream & TS );
};

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

#endif