Add DiscoveryAgent skeleton
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24318 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
009fac9906
commit
a8006c78f0
44
src/kits/bluetooth/DiscoveryAgent.cpp
Normal file
44
src/kits/bluetooth/DiscoveryAgent.cpp
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2007-2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
|
||||||
|
*
|
||||||
|
* All rights reserved. Distributed under the terms of the MIT License.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <bluetooth/DiscoveryAgent.h>
|
||||||
|
#include <bluetooth/DiscoveryListener.h>
|
||||||
|
|
||||||
|
#include <bluetooth/RemoteDevice.h>
|
||||||
|
|
||||||
|
namespace Bluetooth {
|
||||||
|
|
||||||
|
|
||||||
|
RemoteDevice**
|
||||||
|
DiscoveryAgent::RetrieveDevices(int option)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool
|
||||||
|
DiscoveryAgent::StartInquiry(int accessCode, DiscoveryListener listener)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool
|
||||||
|
DiscoveryAgent::CancelInquiry(DiscoveryListener listener)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
DiscoveryAgent::DiscoveryAgent()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -10,6 +10,7 @@ UsePrivateHeaders bluetooth ;
|
|||||||
|
|
||||||
SharedLibrary libbluetooth.so :
|
SharedLibrary libbluetooth.so :
|
||||||
LocalDevice.cpp
|
LocalDevice.cpp
|
||||||
|
DiscoveryAgent.cpp
|
||||||
DiscoveryListener.cpp
|
DiscoveryListener.cpp
|
||||||
: be
|
: be
|
||||||
;
|
;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user