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