diff options
author | 2025-02-28 00:17:57 +0800 | |
---|---|---|
committer | 2025-03-01 23:42:06 +0100 | |
commit | d40f03e4090edafea75f04a1697ef0384231d333 (patch) | |
tree | e3915131a791b3ce5669ee7938ff4eb4f2c5bbba /include/plist/Structure.h | |
parent | 02be84957d44ce68dcf81bada0d3250d4d81395a (diff) | |
download | libplist-d40f03e4090edafea75f04a1697ef0384231d333.tar.gz libplist-d40f03e4090edafea75f04a1697ef0384231d333.tar.bz2 |
C++: Add more convenience functions to the interface
Diffstat (limited to 'include/plist/Structure.h')
-rw-r--r-- | include/plist/Structure.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/plist/Structure.h b/include/plist/Structure.h index eded8b2..d85b17a 100644 --- a/include/plist/Structure.h +++ b/include/plist/Structure.h @@ -43,6 +43,7 @@ public : static Structure* FromXml(const std::string& xml); static Structure* FromBin(const std::vector<char>& bin); + static Structure* FromBin(const char* bin, uint64_t size); protected: Structure(Node* parent = NULL); |