xref: /haiku/src/apps/devices/DeviceSCSI.h (revision 5e9fd9f60d6a4f62bf88b67465e88990413355c8)
1 /*
2  * Copyright 2008-2011, Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Alexander von Gluck, kallisti5@unixzen.com
7  */
8 #ifndef DEVICESCSI_H
9 #define DEVICESCSI_H
10 
11 
12 #include "Device.h"
13 
14 
15 class DeviceSCSI : public Device {
16 public:
17 						DeviceSCSI(Device* parent);
18 	virtual				~DeviceSCSI();
19 	virtual void		InitFromAttributes();
20 };
21 
22 #endif /* DEVICESCSI_H */
23