// $Id: MachineConfig.cc 5070 2006-01-23 18:39:17Z m9710797 $ #include "MachineConfig.hh" #include "XMLElement.hh" namespace openmsx { MachineConfig::MachineConfig(MSXMotherBoard& motherBoard, const std::string& machineName) : HardwareConfig(motherBoard) { load("machines", machineName); } const XMLElement& MachineConfig::getDevices() const { return getConfig().getChild("devices"); } } // namespace openmsx