13 lines
230 B
C++
13 lines
230 B
C++
|
#ifndef _memorymanip__hpp__included__
|
||
|
#define _memorymanip__hpp__included__
|
||
|
|
||
|
#include <string>
|
||
|
#include <list>
|
||
|
#include <vector>
|
||
|
#include <cstdint>
|
||
|
#include <stdexcept>
|
||
|
|
||
|
void refresh_cart_mappings() throw(std::bad_alloc);
|
||
|
|
||
|
#endif
|