summaryrefslogtreecommitdiffstats
path: root/include/plist/Structure.h
diff options
context:
space:
mode:
authorGravatar Aaron Burghardt2014-08-16 17:48:45 -0400
committerGravatar Nikias Bassen2014-09-20 00:10:46 +0200
commitb6c43e901c1ee3ded15261621be1aaa090dab984 (patch)
tree218257fc8751fc0fc979d292acd9162278cadcd7 /include/plist/Structure.h
parentccd6f05fe1e6cd5a1611b0df78974fa39869013d (diff)
downloadlibplist-b6c43e901c1ee3ded15261621be1aaa090dab984.tar.gz
libplist-b6c43e901c1ee3ded15261621be1aaa090dab984.tar.bz2
Added const to Array.GetSize(), and to 3 Node methods.
Diffstat (limited to 'include/plist/Structure.h')
-rw-r--r--include/plist/Structure.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/plist/Structure.h b/include/plist/Structure.h
index 8e609da..eded8b2 100644
--- a/include/plist/Structure.h
+++ b/include/plist/Structure.h
@@ -34,10 +34,10 @@ class Structure : public Node
public :
virtual ~Structure();
- uint32_t GetSize();
+ uint32_t GetSize() const;
- std::string ToXml();
- std::vector<char> ToBin();
+ std::string ToXml() const;
+ std::vector<char> ToBin() const;
virtual void Remove(Node* node) = 0;