From 00f089d7edafa53a5018054f9662a36a695ad8b9 Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Wed, 17 Jan 2018 01:57:01 +0100 Subject: Added copy constructors and assignment operators to Array and Dictionary --- src/core/Array.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/core/Array.cpp') diff --git a/src/core/Array.cpp b/src/core/Array.cpp index c3de16c..0350547 100644 --- a/src/core/Array.cpp +++ b/src/core/Array.cpp @@ -13,6 +13,18 @@ Array::Array() godot::api->godot_array_new(&_godot_array); } +Array::Array(const Array & other) +{ + godot::api->godot_array_new_copy(&_godot_array, &other._godot_array); +} + +Array & Array::operator=(const Array & other) +{ + godot::api->godot_array_destroy(&_godot_array); + godot::api->godot_array_new_copy(&_godot_array, &other._godot_array); + return *this; +} + Array::Array(const PoolByteArray& a) { godot::api->godot_array_new_pool_byte_array(&_godot_array, (godot_pool_byte_array *) &a); -- cgit v1.2.3