author | zecke <zecke> | 2002-06-03 22:01:43 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-06-03 22:01:43 (UTC) |
commit | ffdd69b933bf6c1475da57036197a2b65a507646 (patch) (side-by-side diff) | |
tree | 20c98df6bf21bd35082248ff7593d2ac1573f7dc /noncore | |
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 @@ + +#include "manager.h" + + +using namespace OpieTooth; + +Manager::Manager( const QString& ) + : QObject() +{ + +} +Manager::Manager( Device* dev ) + : QObject() +{ + +} +Manager::Manager() + : QObject() +{ + +} +Manager::~Manager(){ + +} +void Manager::setDevice( const QString& dev ){ + +} +void Manager::setDevice( Device* dev ){ + +} +void Manager::isConnected( const QString& device ){ + +} +void Manager::isConnected( Device* dev ){ + + +} +void Manager::searchDevices( const QString& device ){ + +} + +void Manager::searchDevices(Device* d ){ + + +} +void Manager::addService(const QString& name ){ + +} +void Manager::addServices(const QStringList& ){ + +} +void Manager::removeService( const QString& name ){ + +} +void Manager::removeServices( const QStringList& ){ + +} +void Manager::searchServices( const QString& remDevice ){ + +} +void Manager::searchServices( const RemoteDevices& ){ + +} +QString Manager::toDevice( const QString& mac ){ + +} +QString Manager::toMac( const QString &device ){ + +} |