summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-02-06 12:10:23 -0800
committerGravatar Nikias Bassen2023-04-21 12:16:55 +0200
commit12c45a21b4f223ca2a4ccba42ade2366f4dbde5c (patch)
tree6884b1da1da49bc5ce5f2ea8ec9767d315905d0e /src
parent581db7f8215387cd722b9f06a5afbd4df9617072 (diff)
downloadlibplist-12c45a21b4f223ca2a4ccba42ade2366f4dbde5c.tar.gz
libplist-12c45a21b4f223ca2a4ccba42ade2366f4dbde5c.tar.bz2
C++: Add dictionary and array size method
Thanks @Cryptiiiic for the contribution.
Diffstat (limited to 'src')
-rw-r--r--src/Array.cpp4
-rw-r--r--src/Dictionary.cpp4
2 files changed, 8 insertions, 0 deletions
diff --git a/src/Array.cpp b/src/Array.cpp
index 2722d14..7826494 100644
--- a/src/Array.cpp
+++ b/src/Array.cpp
@@ -128,6 +128,10 @@ Array::const_iterator Array::end() const
return _array.end();
}
+const size_t Array::size() const {
+ return _array.size();
+}
+
void Array::Append(Node* node)
{
if (node)
diff --git a/src/Dictionary.cpp b/src/Dictionary.cpp
index 4094d2c..5e76cb6 100644
--- a/src/Dictionary.cpp
+++ b/src/Dictionary.cpp
@@ -134,6 +134,10 @@ Dictionary::const_iterator Dictionary::end() const
return _map.end();
}
+const size_t Dictionary::size() const {
+ return _map.size();
+}
+
Dictionary::iterator Dictionary::Find(const std::string& key)
{
return _map.find(key);