btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / servers / bluetooth / HCIControllerAccessor.h
blob8294c4bceb2667d4ee396a8675194a5fca00aad0
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 #ifndef _HCICONTROLLER_ACCESSOR_H_
6 #define _HCICONTROLLER_ACCESSOR_H_
8 #include "HCIDelegate.h"
11 class HCIControllerAccessor : public HCIDelegate {
13 public:
14 HCIControllerAccessor(BPath* path);
15 ~HCIControllerAccessor();
16 status_t IssueCommand(raw_command rc, size_t size);
17 status_t Launch();
18 private:
19 int fSocket;
23 #endif