Fix coding style

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22668 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes 2007-10-22 17:53:08 +00:00
parent 7044da5546
commit 7236d2c1c8

View File

@ -7,13 +7,26 @@
#include <bluetooth/LocalDevice.h> #include <bluetooth/LocalDevice.h>
#include <bluetooth/DeviceClass.h>
#include <bluetooth/DiscoveryAgent.h>
#include <bluetooth/RemoteDevice.h>
#include <bluetooth/bdaddrUtils.h> #include <bluetooth/bdaddrUtils.h>
namespace Bluetooth { namespace Bluetooth {
LocalDevice* LocalDevice*
LocalDevice::getLocalDevice() { LocalDevice::GetLocalDevice()
{
return NULL;
}
LocalDevice*
LocalDevice::GetLocalDevice(uint8 dev)
{
return NULL; return NULL;
@ -21,15 +34,8 @@ namespace Bluetooth {
LocalDevice* LocalDevice*
LocalDevice::getLocalDevice(uint8 dev) { LocalDevice::GetLocalDevice(bdaddr_t bdaddr)
{
return NULL;
}
LocalDevice*
LocalDevice::getLocalDevice(bdaddr_t bdaddr){
return NULL; return NULL;
@ -37,35 +43,40 @@ namespace Bluetooth {
DiscoveryAgent* DiscoveryAgent*
LocalDevice::getDiscoveryAgent() { LocalDevice::GetDiscoveryAgent()
{
return NULL; return NULL;
} }
BString BString
LocalDevice::getFriendlyName() { LocalDevice::GetFriendlyName()
{
return NULL; return NULL;
} }
DeviceClass DeviceClass
LocalDevice::getDeviceClass() { LocalDevice::GetDeviceClass()
{
return NULL; return NULL;
} }
bool bool
LocalDevice::setDiscoverable(int mode) { LocalDevice::SetDiscoverable(int mode)
{
return false; return false;
} }
BString BString
LocalDevice::getProperty(const char* property) { LocalDevice::GetProperty(const char* property)
{
return NULL; return NULL;
@ -73,22 +84,24 @@ namespace Bluetooth {
void void
LocalDevice::getProperty(const char* property, uint32* value) { LocalDevice::GetProperty(const char* property, uint32* value)
{
*value = 0; *value = 0;
} }
int int
LocalDevice::getDiscoverable() { LocalDevice::GetDiscoverable()
{
return 0; return 0;
} }
BString BString
LocalDevice::getBluetoothAddress() { LocalDevice::GetBluetoothAddress()
{
return NULL; return NULL;
} }
@ -105,7 +118,8 @@ namespace Bluetooth {
} }
*/ */
LocalDevice::LocalDevice() { LocalDevice::LocalDevice()
{
} }