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)8HCIControllerAccessor::HCIControllerAccessor(BPath* path) : HCIDelegate(path) 9 { 10 11 } 12 13 ~HCIControllerAccessor()14HCIControllerAccessor::~HCIControllerAccessor() 15 { 16 17 } 18 19 20 status_t IssueCommand(raw_command rc,size_t size)21HCIControllerAccessor::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()32HCIControllerAccessor::Launch() { 33 34 return B_OK; 35 36 } 37