#ifndef __PF_BITGRID__ #define __PF_BITGRID__ /** @file bitgrid.h @brief Bitgrid packet class This file contains the data members for the bitgrid packet class. */ #define PF_BITGRID_MAXDIM 4 ///< max nb of dimensions /** \brief Bitgrid packet subheader It is a generic grid containing bits. For example, a 3x3 byte matrix can be captured in a 8x3x3 bit grid. */ typedef struct pf_bitgrid { pf_header_t super; u32 dims; ///< dimensionality u32 dim[PF_BITGRID_MAXDIM]; ///< size of each dimension } pf_bitgrid_t; #endif