// $Id: MachineConfig.hh 5070 2006-01-23 18:39:17Z m9710797 $ #ifndef MACHINECONFIG_HH #define MACHINECONFIG_HH #include "HardwareConfig.hh" namespace openmsx { class MachineConfig : public HardwareConfig { public: MachineConfig(MSXMotherBoard& motherBoard, const std::string& machineName); virtual const XMLElement& getDevices() const; }; } // namespace openmsx #endif