// $Id: DummyVideoSystem.hh 4839 2005-11-11 22:00:07Z m9710797 $ #ifndef DUMMYVIDEOSYSTEM_HH #define DUMMYVIDEOSYSTEM_HH #include "VideoSystem.hh" namespace openmsx { class DummyVideoSystem: public VideoSystem { public: // VideoSystem interface: virtual V9990Rasterizer* createV9990Rasterizer(V9990& vdp); virtual void flush(); }; } // namespace openmsx #endif