From cadb0136543928ae9cb90a453ac52cadd337d9e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20L=C3=B6vhall?= Date: Wed, 16 Jul 2025 10:00:02 +0200 Subject: [PATCH] [C++] add getter for schema id on the IrDecoder --- sbe-tool/src/main/cpp/otf/IrDecoder.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sbe-tool/src/main/cpp/otf/IrDecoder.h b/sbe-tool/src/main/cpp/otf/IrDecoder.h index 2c497d29ad..947d5c31e3 100644 --- a/sbe-tool/src/main/cpp/otf/IrDecoder.h +++ b/sbe-tool/src/main/cpp/otf/IrDecoder.h @@ -137,6 +137,10 @@ class IrDecoder return result; } + int schemaId() const { + return m_id; + } + protected: // OS specifics static long long getFileSize(const char *filename)