Expose a parent tag type value
This commit is contained in:
parent
2954a1924e
commit
bfa54b4804
4 changed files with 32 additions and 2 deletions
|
@ -147,6 +147,13 @@ abstract class Tag {
|
|||
}
|
||||
|
||||
TagType getTagType();
|
||||
TagType _parentTagType = TagType.End;
|
||||
|
||||
TagType get parentTagType => _parentTagType;
|
||||
void setParentTagType(TagType type) {
|
||||
_parentTagType = type;
|
||||
}
|
||||
|
||||
void writeValue(ByteLayer data);
|
||||
void readValue(ByteLayer data);
|
||||
String? _key;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue