summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/device.cc
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/lib/device.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/device.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/noncore/net/opietooth/lib/device.cc b/noncore/net/opietooth/lib/device.cc
new file mode 100644
index 0000000..b567e2b
--- a/dev/null
+++ b/noncore/net/opietooth/lib/device.cc
@@ -0,0 +1,24 @@
+
+#include "device.h"
+
+using namespace OpieTooth;
+
+Device::Device(const QString &device, const QString &mode )
+ : QObject(0, "device" ){
+
+}
+Device::~Device(){
+
+}
+void Device::attach(){
+
+}
+void Device::detach(){
+
+}
+bool Device::isLoaded()const{
+ return false;
+}
+QString Device::devName()const {
+ return QString::fromLatin1("hci0");
+};