From dd808b4d578f3924250e3d0bbf833799e0266cd0 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Sat, 8 Feb 2025 14:52:28 +0100 Subject: [PATCH] remove unused functions --- include/sp/protocol/Field.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/sp/protocol/Field.h b/include/sp/protocol/Field.h index 69dfcc1..57c9042 100644 --- a/include/sp/protocol/Field.h +++ b/include/sp/protocol/Field.h @@ -16,16 +16,6 @@ class Field { return m_Value; } - // Read (deserialise) and update internal value - void Read(DataBuffer& buffer) { - buffer >> m_Value; - } - - // Write (serialise) internal value - void Write(DataBuffer& buffer) const { - buffer << m_Value; - } - Field& operator=(const ValueType& value) { m_Value = value; return *this;