#ifndef _memorymanip__hpp__included__ #define _memorymanip__hpp__included__ #include #include #include #include #include class memory_space; class movie_logic; class loaded_rom; class cart_mappings_refresher { public: cart_mappings_refresher(memory_space& _mspace, movie_logic& _mlogic, loaded_rom& _rom); void operator()() throw(std::bad_alloc); private: memory_space& mspace; movie_logic& mlogic; loaded_rom& rom; }; #endif