diff --git a/src/kits/bluetooth/DiscoveryAgent.cpp b/src/kits/bluetooth/DiscoveryAgent.cpp new file mode 100644 index 0000000000..3ca048affb --- /dev/null +++ b/src/kits/bluetooth/DiscoveryAgent.cpp @@ -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 +#include + +#include + +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() +{ + +} + +} diff --git a/src/kits/bluetooth/Jamfile b/src/kits/bluetooth/Jamfile index 0d1ef0178f..e3eb89a6e5 100644 --- a/src/kits/bluetooth/Jamfile +++ b/src/kits/bluetooth/Jamfile @@ -10,6 +10,7 @@ UsePrivateHeaders bluetooth ; SharedLibrary libbluetooth.so : LocalDevice.cpp + DiscoveryAgent.cpp DiscoveryListener.cpp : be ;