summaryrefslogtreecommitdiffstats
path: root/src/Structure.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure.cpp')
-rw-r--r--src/Structure.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Structure.cpp b/src/Structure.cpp
index 18b19ef..70150c2 100644
--- a/src/Structure.cpp
+++ b/src/Structure.cpp
@@ -35,7 +35,7 @@ Structure::~Structure()
{
}
-uint32_t Structure::GetSize()
+uint32_t Structure::GetSize() const
{
uint32_t size = 0;
plist_type type = plist_get_node_type(_node);
@@ -50,7 +50,7 @@ uint32_t Structure::GetSize()
return size;
}
-std::string Structure::ToXml()
+std::string Structure::ToXml() const
{
char* xml = NULL;
uint32_t length = 0;
@@ -60,7 +60,7 @@ std::string Structure::ToXml()
return ret;
}
-std::vector<char> Structure::ToBin()
+std::vector<char> Structure::ToBin() const
{
char* bin = NULL;
uint32_t length = 0;