summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/device.cc
blob: b567e2b5a793974b889d55ad530d9ced125807f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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");
};