summaryrefslogtreecommitdiffstats
path: root/include/core/Array.hpp
diff options
context:
space:
mode:
authorThomas Herzog <thomas.herzog@mail.com>2018-01-17 08:42:09 +0100
committerGitHub <noreply@github.com>2018-01-17 08:42:09 +0100
commitb9b06b5fbcd58a63c01eef6784f6082f528a1e3f (patch)
tree7aa5c5c2d477a92f1b5f7f91aa9296d039595b3c /include/core/Array.hpp
parent7dde412e26315447edf2f46661143082b5becf32 (diff)
parent00f089d7edafa53a5018054f9662a36a695ad8b9 (diff)
downloadredot-cpp-b9b06b5fbcd58a63c01eef6784f6082f528a1e3f.tar.gz
Merge pull request #69 from Zylann/fix_copy_constructors
Added copy constructors and assignment operators to Array and Dictionary
Diffstat (limited to 'include/core/Array.hpp')
-rw-r--r--include/core/Array.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/core/Array.hpp b/include/core/Array.hpp
index 2005740..2320568 100644
--- a/include/core/Array.hpp
+++ b/include/core/Array.hpp
@@ -22,6 +22,8 @@ class Array {
godot_array _godot_array;
public:
Array();
+ Array(const Array & other);
+ Array & operator=(const Array & other);
Array(const PoolByteArray& a);