summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/irda/irda_NN.cpp
Unidiff
Diffstat (limited to 'noncore/settings/networksettings2/irda/irda_NN.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/irda/irda_NN.cpp19
1 files changed, 1 insertions, 18 deletions
diff --git a/noncore/settings/networksettings2/irda/irda_NN.cpp b/noncore/settings/networksettings2/irda/irda_NN.cpp
index 6858157..a1ed686 100644
--- a/noncore/settings/networksettings2/irda/irda_NN.cpp
+++ b/noncore/settings/networksettings2/irda/irda_NN.cpp
@@ -1,69 +1,52 @@
1#include "irda_NN.h" 1#include "irda_NN.h"
2#include "irda_NNI.h" 2#include "irda_NNI.h"
3 3
4#ifndef MYPLUGIN
5
6#include "netnodeinterface.h" 4#include "netnodeinterface.h"
7 5
8#endif
9
10static const char * IRDANeeds[] = 6static const char * IRDANeeds[] =
11 { 0 7 { 0
12 }; 8 };
13 9
14static const char * IRDAProvides[] = 10static const char * IRDAProvides[] =
15 { "line", 11 { "line",
16 0 12 0
17 }; 13 };
18 14
19/** 15/**
20 * Constructor, find all of the possible interfaces 16 * Constructor, find all of the possible interfaces
21 */ 17 */
22IRDANetNode::IRDANetNode() : ANetNode(tr("Infrared link")) { 18IRDANetNode::IRDANetNode() : ANetNode(tr("Infrared link")) {
23} 19}
24 20
25/** 21/**
26 * Delete any interfaces that we own. 22 * Delete any interfaces that we own.
27 */ 23 */
28IRDANetNode::~IRDANetNode(){ 24IRDANetNode::~IRDANetNode(){
29} 25}
30 26
31const QString IRDANetNode::nodeDescription(){ 27const QString IRDANetNode::nodeDescription(){
32 return tr("\ 28 return tr("\
33<p>Sets up a infra red serial link.</p>\ 29<p>Sets up a infra red serial link.</p>\
34" 30"
35); 31);
36} 32}
37 33
38ANetNodeInstance * IRDANetNode::createInstance( void ) { 34ANetNodeInstance * IRDANetNode::createInstance( void ) {
39 return new AIRDA( this ); 35 return new AIRDA( this );
40} 36}
41 37
42const char ** IRDANetNode::needs( void ) { 38const char ** IRDANetNode::needs( void ) {
43 return IRDANeeds; 39 return IRDANeeds;
44} 40}
45 41
46const char ** IRDANetNode::provides( void ) { 42const char ** IRDANetNode::provides( void ) {
47 return IRDAProvides; 43 return IRDAProvides;
48} 44}
49 45
50void IRDANetNode::setSpecificAttribute( QString & , QString & ) { 46void IRDANetNode::setSpecificAttribute( QString & , QString & ) {
51} 47}
52 48
53void IRDANetNode::saveSpecificAttribute( QTextStream & ) { 49void IRDANetNode::saveSpecificAttribute( QTextStream & ) {
54} 50}
55 51
56#ifdef MYPLUGIN 52OPIE_NS2_PLUGIN( NetNodeInterface_T<IRDANetNode> )
57
58extern "C" {
59void create_plugin( QList<ANetNode> & PNN ) {
60 PNN.append( new IRDANetNode() );
61}
62
63#else
64
65OPIE_NS2_PLUGIN( NetNodeInterface<IRDANetNode> )
66
67#endif
68
69}