#ifndef STORAGE_H #define STORAGE_H #include #include class Storage { public: int **view(int base) { return nullptr; } virtual bool store(); std::vector> address_space; }; #endif /* STORAGE_H_INCLUDED */