1 /* 2 * Copyright 2007-2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com 3 * 4 * All rights reserved. Distributed under the terms of the MIT License. 5 * 6 */ 7 8 9 #ifndef _HCITRANSPORT_ACCESSOR_H_ 10 #define _HCITRANSPORT_ACCESSOR_H_ 11 12 #include "HCIDelegate.h" 13 14 15 class HCITransportAccessor : public HCIDelegate { 16 17 public: 18 HCITransportAccessor(BPath* path); 19 status_t IssueCommand(raw_command rc, size_t size); 20 }; 21 22 #endif 23