More Stylistic changes

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26705 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes
2008-07-31 21:08:27 +00:00
parent b48fa68ace
commit 26e7ba5602
6 changed files with 115 additions and 125 deletions
+29 -29
View File
@@ -14,50 +14,50 @@ namespace Bluetooth {
class DeviceClass {
public:
public:
DeviceClass(int record)
{
this->record = record;
}
DeviceClass(int record)
{
this->record = record;
}
DeviceClass()
{
this->record = 0;
}
DeviceClass()
{
this->record = 0;
}
int GetServiceClasses()
{
return (record & 0x00FFE000) >> 13;
}
int GetServiceClasses()
{
return (record & 0x00FFE000) >> 13;
}
int GetMajorDeviceClass()
{
return (record & 0x00001F00) >> 8;
}
int GetMajorDeviceClass()
{
return (record & 0x00001F00) >> 8;
}
void GetMajorDeviceClass(BString* str)
{
void GetMajorDeviceClass(BString* str)
{
}
}
int GetMinorDeviceClass()
{
int GetMinorDeviceClass()
{
return (record & 0x000000FF) >> 2;
}
}
void GetMinorDeviceClass(BString* str)
{
void GetMinorDeviceClass(BString* str)
{
}
private:
int record;
}
private:
int record;
};
}