the EbmlBinary GetSize() is the same as the parent class (EbmlElement) one
+ add an internal Accessor API git-svn-id: https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/libebml@12 a6f86f6d-0131-4f8e-9e7b-e335508773d5
This commit is contained in:
@@ -84,7 +84,6 @@ class EBML_DLL_API EbmlBinary : public EbmlElement {
|
|||||||
bValueIsSet = true;
|
bValueIsSet = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64 GetSize() const {return Size;}
|
|
||||||
operator const binary &() const {return *Data;}
|
operator const binary &() const {return *Data;}
|
||||||
|
|
||||||
bool IsDefaultValue() const {
|
bool IsDefaultValue() const {
|
||||||
@@ -94,6 +93,8 @@ class EBML_DLL_API EbmlBinary : public EbmlElement {
|
|||||||
bool operator==(const EbmlBinary & ElementToCompare) const;
|
bool operator==(const EbmlBinary & ElementToCompare) const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
binary *GetData() const {return Data;}
|
||||||
|
|
||||||
binary *Data; // the binary data inside the element
|
binary *Data; // the binary data inside the element
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user