btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / servers / bluetooth / HCITransportAccessor.h
blob3d8d3b9c49466b573917e72cbd4a9a859b4d89d6
1 /*
2 * Copyright 2007-2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
4 * All rights reserved. Distributed under the terms of the MIT License.
6 */
9 #ifndef _HCITRANSPORT_ACCESSOR_H_
10 #define _HCITRANSPORT_ACCESSOR_H_
12 #include "HCIDelegate.h"
15 class HCITransportAccessor : public HCIDelegate {
17 public:
18 HCITransportAccessor(BPath* path);
19 ~HCITransportAccessor();
20 status_t IssueCommand(raw_command rc, size_t size);
21 status_t Launch();
22 private:
23 int fDescriptor;
26 #endif