xref: /haiku/src/apps/devices/DevicePCI.h (revision ed24eb5ff12640d052171c6a7feba37fab8a75d1)
1 /*
2  * Copyright 2008-2009 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Pieter Panman
7  */
8 #ifndef DEVICEPCI_H
9 #define DEVICEPCI_H
10 
11 
12 #include "Device.h"
13 
14 class DevicePCI : public Device {
15 public:
16 						DevicePCI(Device* parent);
17 	virtual				~DevicePCI();
18 	virtual void		InitFromAttributes();
19 
20 private:
21 	uint16				fClassBaseId;
22 	uint16				fClassSubId;
23 	uint16				fClassApiId;
24 	uint16				fVendorId;
25 	uint16				fDeviceId;
26 	uint16				fSubsystemVendorId;
27 	uint16				fSubSystemId;
28 };
29 
30 #endif /* DEVICEPCI_H */
31