Made ByteSize() a virtual method in DIEType and implemented in all subclasses
that potentially have that attribute. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31633 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -219,6 +219,8 @@ public:
|
||||
|
||||
virtual const char* Name() const;
|
||||
|
||||
virtual const DynamicAttributeValue* ByteSize() const;
|
||||
|
||||
virtual status_t AddAttribute_name(uint16 attributeName,
|
||||
const AttributeValue& value);
|
||||
virtual status_t AddAttribute_allocated(uint16 attributeName,
|
||||
@@ -321,6 +323,8 @@ public:
|
||||
|
||||
virtual DebugInfoEntry* Specification() const;
|
||||
|
||||
virtual const DynamicAttributeValue* ByteSize() const;
|
||||
|
||||
const DebugInfoEntryList& DataMembers() const
|
||||
{ return fDataMembers; }
|
||||
|
||||
@@ -428,6 +432,8 @@ public:
|
||||
|
||||
virtual DebugInfoEntry* Specification() const;
|
||||
|
||||
virtual const DynamicAttributeValue* ByteSize() const;
|
||||
|
||||
virtual status_t AddChild(DebugInfoEntry* child);
|
||||
|
||||
virtual status_t AddAttribute_ordering(uint16 attributeName,
|
||||
@@ -487,6 +493,8 @@ public:
|
||||
|
||||
virtual DebugInfoEntry* Specification() const;
|
||||
|
||||
virtual const DynamicAttributeValue* ByteSize() const;
|
||||
|
||||
virtual status_t AddChild(DebugInfoEntry* child);
|
||||
|
||||
virtual status_t AddAttribute_bit_stride(uint16 attributeName,
|
||||
@@ -647,6 +655,8 @@ public:
|
||||
|
||||
virtual uint16 Tag() const;
|
||||
|
||||
virtual const DynamicAttributeValue* ByteSize() const;
|
||||
|
||||
virtual status_t AddAttribute_byte_size(uint16 attributeName,
|
||||
const AttributeValue& value);
|
||||
|
||||
@@ -847,6 +857,8 @@ public:
|
||||
|
||||
virtual uint16 Tag() const;
|
||||
|
||||
virtual const DynamicAttributeValue* ByteSize() const;
|
||||
|
||||
virtual status_t AddAttribute_byte_size(uint16 attributeName,
|
||||
const AttributeValue& value);
|
||||
|
||||
@@ -861,6 +873,8 @@ public:
|
||||
|
||||
virtual uint16 Tag() const;
|
||||
|
||||
virtual const DynamicAttributeValue* ByteSize() const;
|
||||
|
||||
virtual status_t AddAttribute_bit_stride(uint16 attributeName,
|
||||
const AttributeValue& value);
|
||||
virtual status_t AddAttribute_byte_size(uint16 attributeName,
|
||||
@@ -930,8 +944,7 @@ public:
|
||||
|
||||
virtual uint16 Tag() const;
|
||||
|
||||
const DynamicAttributeValue* ByteSize() const
|
||||
{ return &fByteSize; }
|
||||
virtual const DynamicAttributeValue* ByteSize() const;
|
||||
const DynamicAttributeValue* BitOffset() const
|
||||
{ return &fBitOffset; }
|
||||
const DynamicAttributeValue* BitSize() const
|
||||
@@ -1041,6 +1054,8 @@ public:
|
||||
|
||||
virtual uint16 Tag() const;
|
||||
|
||||
virtual const DynamicAttributeValue* ByteSize() const;
|
||||
|
||||
virtual status_t AddAttribute_byte_size(uint16 attributeName,
|
||||
const AttributeValue& value);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user