From a74efeffb84b76b5b61ebf7f370187863871793c Mon Sep 17 00:00:00 2001 From: Lukas E Date: Thu, 1 Oct 2020 14:29:38 +0200 Subject: [PATCH] Added BinArray Struct --- python/boomer/common/cpp/tuples.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/boomer/common/cpp/tuples.h b/python/boomer/common/cpp/tuples.h index d5585a0c89..4625c65d51 100644 --- a/python/boomer/common/cpp/tuples.h +++ b/python/boomer/common/cpp/tuples.h @@ -56,6 +56,11 @@ struct Bin { float32 maxValue; }; +struct BinArray { + uint32 numBins; + Bin* bins; +}; + namespace tuples { /**