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
14class DevicePCI : public Device {
15public:
16						DevicePCI(Device* parent);
17	virtual				~DevicePCI();
18	virtual void		InitFromAttributes();
19
20private:
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