#pragma once #include namespace kel { namespace lbm { namespace schema { using namespace saw::schema; template struct Descriptor {}; template using CellType = FixedArray; /** * T... is restricted to Member schemas */ template using CellData = Struct< CellT... >; /** * T is an array of CellData */ template using Lattice = Array; } } }