From 14699743157a65be067253fa828219d29f4d058f Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Sun, 4 Aug 2024 16:14:26 -0400 Subject: Add support for memory region flags propagation. --- binaryview.cpp | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'binaryview.cpp') diff --git a/binaryview.cpp b/binaryview.cpp index 01ab7b95..3eea7241 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -1087,30 +1087,6 @@ bool Segment::IsAutoDefined() const } -void Segment::SetLength(uint64_t length) -{ - BNSegmentSetLength(m_object, length); -} - - -void Segment::SetDataOffset(uint64_t dataOffset) -{ - BNSegmentSetDataOffset(m_object, dataOffset); -} - - -void Segment::SetDataLength(uint64_t dataLength) -{ - BNSegmentSetDataLength(m_object, dataLength); -} - - -void Segment::SetFlags(uint32_t flags) -{ - BNSegmentSetFlags(m_object, flags); -} - - Section::Section(BNSection* sec) { m_object = sec; -- cgit v1.3.1