Expose a parent tag type value

This commit is contained in:
zontreck 2024-06-06 23:42:47 -07:00
parent 2954a1924e
commit bfa54b4804
4 changed files with 32 additions and 2 deletions

View file

@ -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;