xref: /haiku/src/servers/bluetooth/HCITransportAccessor.h (revision c90684742e7361651849be4116d0e5de3a817194)
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 		~HCITransportAccessor();
20 		status_t IssueCommand(raw_command rc, size_t size);
21 		status_t Launch();
22 	private:
23 		int fDescriptor;
24 };
25 
26 #endif
27