// $Id: EmptyPatch.hh 5733 2006-10-02 13:16:39Z m9710797 $ #ifndef EMPTYPATCH_HH #define EMPTYPATCH_HH #include "PatchInterface.hh" #include "noncopyable.hh" namespace openmsx { class EmptyPatch : public PatchInterface, private noncopyable { public: EmptyPatch(const byte* block, unsigned size); virtual void copyBlock(unsigned src, byte* dst, unsigned num) const; virtual unsigned getSize() const; private: const byte* block; unsigned size; }; } // namespace openmsx #endif