Line data Source code
1 : /* 2 : * CellData.hpp 3 : * 4 : * Created on: 13 Apr 2022 5 : * Author(s): Jorn Reniers, Volkan Kumtepeli 6 : */ 7 : 8 : #pragma once 9 : 10 : #include "CellDataStorage.hpp" 11 : #include "CellDataWriter.hpp" 12 : #include "../../settings/enum_definitions.hpp" 13 : 14 : #include <string> 15 : 16 : namespace slide { 17 : template <settings::cellDataStorageLevel N> 18 : struct CellData : public CellDataStorage<N> 19 : { 20 10 : auto writeData(auto &cell, const std::string &prefix) 21 : { 22 10 : CellDataWriter<N>::writeData(cell, prefix, *this); 23 10 : } 24 : }; 25 : } // namespace slide