haiku/src/servers/bluetooth/HCITransportAccessor.h

27 lines
503 B
C++

/*
* Copyright 2007-2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
*
* All rights reserved. Distributed under the terms of the MIT License.
*
*/
#ifndef _HCITRANSPORT_ACCESSOR_H_
#define _HCITRANSPORT_ACCESSOR_H_
#include "HCIDelegate.h"
class HCITransportAccessor : public HCIDelegate {
public:
HCITransportAccessor(BPath* path);
~HCITransportAccessor();
status_t IssueCommand(raw_command rc, size_t size);
status_t Launch();
private:
int fDescriptor;
};
#endif