xref: /haiku/src/servers/bluetooth/HCIControllerAccessor.cpp (revision ccf28e4dd1d5314629a2c3c9675cde612345da0c)
1 /*
2  * Copyright 2007-2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 
6 #include "HCIControllerAccessor.h"
7 
HCIControllerAccessor(BPath * path)8 HCIControllerAccessor::HCIControllerAccessor(BPath* path) : HCIDelegate(path)
9 {
10 
11 }
12 
13 
~HCIControllerAccessor()14 HCIControllerAccessor::~HCIControllerAccessor()
15 {
16 
17 }
18 
19 
20 status_t
IssueCommand(raw_command rc,size_t size)21 HCIControllerAccessor::IssueCommand(raw_command rc, size_t size)
22 {
23 
24 	if (Id() < 0)
25 		return B_ERROR;
26 
27 	return B_OK;
28 }
29 
30 
31 status_t
Launch()32 HCIControllerAccessor::Launch() {
33 
34 	return B_OK;
35 
36 }
37