1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef STORAGE_H #define STORAGE_H #include <array> #include <vector> class Storage { public: int **view(int base) { return nullptr; } virtual bool store(); std::vector<std::array<signed int, 4>> address_space; }; #endif /* STORAGE_H_INCLUDED */