summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/irda/irda_NN.cpp
blob: a1ed686fad8b30bc0a1aebeb368f982d3901fa15 (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
45
46
47
48
49
50
51
52
#include "irda_NN.h"
#include "irda_NNI.h"

#include "netnodeinterface.h"

static const char * IRDANeeds[] = 
    { 0
    };

static const char * IRDAProvides[] = 
    { "line",
      0
    };

/**
 * Constructor, find all of the possible interfaces
 */
IRDANetNode::IRDANetNode() : ANetNode(tr("Infrared link")) {
}

/**
 * Delete any interfaces that we own.
 */
IRDANetNode::~IRDANetNode(){
}

const QString IRDANetNode::nodeDescription(){
      return tr("\
<p>Sets up a infra red serial link.</p>\
"
);
}

ANetNodeInstance * IRDANetNode::createInstance( void ) {
      return new AIRDA( this );
}

const char ** IRDANetNode::needs( void ) {
      return IRDANeeds;
}

const char ** IRDANetNode::provides( void ) {
      return IRDAProvides;
}

void IRDANetNode::setSpecificAttribute( QString & , QString & ) {
}

void IRDANetNode::saveSpecificAttribute( QTextStream & ) {
}

OPIE_NS2_PLUGIN(  NetNodeInterface_T<IRDANetNode> )