Change struct sync_raster_t to class

This commit is contained in:
Xavier Arteaga 2021-05-28 11:15:36 +02:00 committed by Xavier Arteaga
parent 6123926353
commit 939dd1b977
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,8 @@ public:
*/
srsran_duplex_mode_t get_duplex_mode(uint16_t band) const;
struct sync_raster_t {
class sync_raster_t
{
protected:
sync_raster_t(uint32_t f, uint32_t s, uint32_t l) : first(f), step(s), last(l), gscn(f) {}
uint32_t gscn;