summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/wlan/wlan_NN.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings2/wlan/wlan_NN.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/wlan/wlan_NN.cpp60
1 files changed, 60 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/wlan/wlan_NN.cpp b/noncore/settings/networksettings2/wlan/wlan_NN.cpp
new file mode 100644
index 0000000..5a26e41
--- a/dev/null
+++ b/noncore/settings/networksettings2/wlan/wlan_NN.cpp
@@ -0,0 +1,60 @@
+#include "wlan_NN.h"
+#include "wlan_NNI.h"
+
+static const char * WLanNeeds[] =
+ { 0
+ };
+
+/**
+ * Constructor, find all of the possible interfaces
+ */
+WLanNetNode::WLanNetNode() : ANetNode() {
+}
+
+/**
+ * Delete any interfaces that we own.
+ */
+WLanNetNode::~WLanNetNode(){
+}
+
+const QString WLanNetNode::nodeDescription(){
+ return tr("\
+<p>Configure Wi/Fi or WLan network cards.</p>\
+<p>Defines Wireless options for those cards</p>\
+"
+);
+}
+
+ANetNodeInstance * WLanNetNode::createInstance( void ) {
+ return new AWLan( this );
+}
+
+const char ** WLanNetNode::needs( void ) {
+ return WLanNeeds;
+}
+
+const char * WLanNetNode::provides( void ) {
+ return "device";
+}
+
+bool WLanNetNode::generateProperFilesFor(
+ ANetNodeInstance * ) {
+ return 1;
+}
+
+bool WLanNetNode::hasDataFor( const QString & ) {
+ return 0;
+}
+
+bool WLanNetNode::generateDataForCommonFile(
+ SystemFile & ,
+ long,
+ ANetNodeInstance * ) {
+ return 1;
+}
+
+extern "C" {
+void create_plugin( QList<ANetNode> & PNN ) {
+ PNN.append( new WLanNetNode() );
+}
+}