root/src/apps/devices/DevicePCI.h
/*
 * Copyright 2008-2009 Haiku Inc. All rights reserved.
 * Distributed under the terms of the MIT License.
 *
 * Authors:
 *              Pieter Panman
 */
#ifndef DEVICEPCI_H
#define DEVICEPCI_H


#include "Device.h"

class DevicePCI : public Device {
public:
                                                DevicePCI(Device* parent);
        virtual                         ~DevicePCI();
        virtual void            InitFromAttributes();

private:
        uint16                          fClassBaseId;
        uint16                          fClassSubId;
        uint16                          fClassApiId;
        uint16                          fVendorId;
        uint16                          fDeviceId;
        uint16                          fSubsystemVendorId;
        uint16                          fSubSystemId;
};

#endif /* DEVICEPCI_H */