xref: /haiku/src/apps/devices/DeviceACPI.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2008-2010 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Alexander von Gluck (kallisti5)
7  */
8 #ifndef DEVICEACPI_H
9 #define DEVICEACPI_H
10 
11 
12 #include "Device.h"
13 
14 
15 class DeviceACPI : public Device {
16 public:
17 						DeviceACPI(Device* parent);
18 	virtual				~DeviceACPI();
19 	virtual Attributes	GetBusAttributes();
20 	virtual BString		GetBusStrings();
21 	virtual void		InitFromAttributes();
22 	virtual BString		GetBusTabName();
23 };
24 
25 #endif /* DEVICEACPI_H */
26 
27