// $Id: InputEventFactory.hh 5589 2006-08-30 19:17:54Z m9710797 $ #ifndef INPUTEVENTFACTORY_HH #define INPUTEVENTFACTORY_HH #include "shared_ptr.hh" #include namespace openmsx { class Event; namespace InputEventFactory { typedef shared_ptr EventPtr; EventPtr createInputEvent(const std::string& str); } } // namespace openmsx #endif