summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/manager.cc
authorzecke <zecke>2002-06-20 22:23:44 (UTC)
committer zecke <zecke>2002-06-20 22:23:44 (UTC)
commit7b4a1dfd56b64e588d3fe6c75a51490df13e9797 (patch) (side-by-side diff)
tree43db3e094004ad478c43d93ddeafed044534035e /noncore/net/opietooth/lib/manager.cc
parentc2eb66bc5c5ac4225edff8b369026bd208f8c148 (diff)
downloadopie-7b4a1dfd56b64e588d3fe6c75a51490df13e9797.zip
opie-7b4a1dfd56b64e588d3fe6c75a51490df13e9797.tar.gz
opie-7b4a1dfd56b64e588d3fe6c75a51490df13e9797.tar.bz2
German politicians suck
Diffstat (limited to 'noncore/net/opietooth/lib/manager.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/manager.cc22
1 files changed, 14 insertions, 8 deletions
diff --git a/noncore/net/opietooth/lib/manager.cc b/noncore/net/opietooth/lib/manager.cc
index fcd21f6..177c94e 100644
--- a/noncore/net/opietooth/lib/manager.cc
+++ b/noncore/net/opietooth/lib/manager.cc
@@ -1,3 +1,6 @@
+
+
#include <opie/oprocess.h>
+#include "parser.h"
#include "manager.h"
@@ -15,3 +18,3 @@ Manager::Manager( const QString& dev )
}
-Manager::Manager( Device* dev )
+Manager::Manager( Device* /*dev*/ )
: QObject()
@@ -34,3 +37,3 @@ void Manager::setDevice( const QString& dev ){
}
-void Manager::setDevice( Device* dev ){
+void Manager::setDevice( Device* /*dev*/ ){
@@ -49,3 +52,4 @@ void Manager::isAvailable( const QString& device ){
}
-void Manager::isAvailable( Device* dev ){
+
+void Manager::isAvailable( Device* /*dev*/ ){
@@ -70,3 +74,3 @@ void Manager::searchDevices( const QString& device ){
-void Manager::searchDevices(Device* d ){
+void Manager::searchDevices(Device* /*d*/ ){
@@ -117,7 +121,7 @@ void Manager::searchServices( const RemoteDevice& dev){
}
-QString Manager::toDevice( const QString& mac ){
-
+QString Manager::toDevice( const QString& /*mac*/ ){
+ return QString::null;
}
-QString Manager::toMac( const QString &device ){
-
+QString Manager::toMac( const QString &/*device*/ ){
+ return QString::null;
}
@@ -159,2 +163,4 @@ Services::ValueList Manager::parseSDPOutput( const QString& out ) {
Services::ValueList list;
+ Parser parser( out );
+ list = parser.services();
return list;