author | zecke <zecke> | 2002-06-03 22:01:43 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-06-03 22:01:43 (UTC) |
commit | ffdd69b933bf6c1475da57036197a2b65a507646 (patch) (unidiff) | |
tree | 20c98df6bf21bd35082248ff7593d2ac1573f7dc | |
parent | 7080f9f10443d7a8e61d01b5a1c0e9c972f6baca (diff) | |
download | opie-ffdd69b933bf6c1475da57036197a2b65a507646.zip opie-ffdd69b933bf6c1475da57036197a2b65a507646.tar.gz opie-ffdd69b933bf6c1475da57036197a2b65a507646.tar.bz2 |
Harlekin this is for you
-rw-r--r-- | noncore/net/opietooth/lib/manager.cc | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/noncore/net/opietooth/lib/manager.cc b/noncore/net/opietooth/lib/manager.cc new file mode 100644 index 0000000..882af81 --- a/dev/null +++ b/noncore/net/opietooth/lib/manager.cc | |||
@@ -0,0 +1,69 @@ | |||
1 | |||
2 | #include "manager.h" | ||
3 | |||
4 | |||
5 | using namespace OpieTooth; | ||
6 | |||
7 | Manager::Manager( const QString& ) | ||
8 | : QObject() | ||
9 | { | ||
10 | |||
11 | } | ||
12 | Manager::Manager( Device* dev ) | ||
13 | : QObject() | ||
14 | { | ||
15 | |||
16 | } | ||
17 | Manager::Manager() | ||
18 | : QObject() | ||
19 | { | ||
20 | |||
21 | } | ||
22 | Manager::~Manager(){ | ||
23 | |||
24 | } | ||
25 | void Manager::setDevice( const QString& dev ){ | ||
26 | |||
27 | } | ||
28 | void Manager::setDevice( Device* dev ){ | ||
29 | |||
30 | } | ||
31 | void Manager::isConnected( const QString& device ){ | ||
32 | |||
33 | } | ||
34 | void Manager::isConnected( Device* dev ){ | ||
35 | |||
36 | |||
37 | } | ||
38 | void Manager::searchDevices( const QString& device ){ | ||
39 | |||
40 | } | ||
41 | |||
42 | void Manager::searchDevices(Device* d ){ | ||
43 | |||
44 | |||
45 | } | ||
46 | void Manager::addService(const QString& name ){ | ||
47 | |||
48 | } | ||
49 | void Manager::addServices(const QStringList& ){ | ||
50 | |||
51 | } | ||
52 | void Manager::removeService( const QString& name ){ | ||
53 | |||
54 | } | ||
55 | void Manager::removeServices( const QStringList& ){ | ||
56 | |||
57 | } | ||
58 | void Manager::searchServices( const QString& remDevice ){ | ||
59 | |||
60 | } | ||
61 | void Manager::searchServices( const RemoteDevices& ){ | ||
62 | |||
63 | } | ||
64 | QString Manager::toDevice( const QString& mac ){ | ||
65 | |||
66 | } | ||
67 | QString Manager::toMac( const QString &device ){ | ||
68 | |||
69 | } | ||