summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/device.cc
authorzecke <zecke>2002-05-30 21:32:24 (UTC)
committer zecke <zecke>2002-05-30 21:32:24 (UTC)
commit7eff37a7c8744fd0eee7bb93b42913fc9e213827 (patch) (unidiff)
tree87181fd64a3b0222e0781f4f8e55b168f1f4992c /noncore/net/opietooth/lib/device.cc
parent52e5ef5261c6b098f28f1ad8793a2743ce9c5daa (diff)
downloadopie-7eff37a7c8744fd0eee7bb93b42913fc9e213827.zip
opie-7eff37a7c8744fd0eee7bb93b42913fc9e213827.tar.gz
opie-7eff37a7c8744fd0eee7bb93b42913fc9e213827.tar.bz2
first bits of a impl
Diffstat (limited to 'noncore/net/opietooth/lib/device.cc') (more/less context) (show 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 @@
1
2#include "device.h"
3
4using namespace OpieTooth;
5
6Device::Device(const QString &device, const QString &mode )
7 : QObject(0, "device" ){
8
9}
10Device::~Device(){
11
12}
13void Device::attach(){
14
15}
16void Device::detach(){
17
18}
19bool Device::isLoaded()const{
20 return false;
21}
22QString Device::devName()const {
23 return QString::fromLatin1("hci0");
24};