// $Id: RomFactory.hh 4486 2005-06-16 19:35:31Z m9710797 $ #ifndef ROMFACTORY_HH #define ROMFACTORY_HH #include namespace openmsx { class MSXDevice; class MSXMotherBoard; class XMLElement; class EmuTime; class RomFactory { public: static std::auto_ptr create( MSXMotherBoard& motherBoard, const XMLElement& config, const EmuTime& time); }; } // namespace openmsx #endif