xref: /haiku/src/servers/bluetooth/HCIControllerAccessor.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
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_
7 
8 #include "HCIDelegate.h"
9 
10 
11 class HCIControllerAccessor : public HCIDelegate {
12 
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;
20 
21 };
22 
23 #endif
24