diff callConstructor.m @ 468:13362cf4dd89 feature/sublassable_cellarray

Make the overloaded methods call the subclass constructor
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 01 Aug 2017 12:41:42 +0200
parents
children 428cc9d4106f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/callConstructor.m	Tue Aug 01 12:41:42 2017 +0200
@@ -0,0 +1,7 @@
+% Calls the constructor of an object.
+% Might be usefull to call the constructor of a subclass object in the superclass
+function obj = callConstructor(subclassObj, varargin)
+    varargin
+    fun = str2func(class(subclassObj));
+    obj = fun(varargin{:});
+end