00001 00010 #ifndef NODE_HPP 00011 #define NODE_HPP 00012 00013 #include "Cell.hpp" 00014 00019 struct Node { 00020 Cell* elem_m; 00021 Node* next_m; 00022 }; 00023 00024 #endif // NODE_HPP