Skip to content
Snippets Groups Projects
Commit 77bebe2c authored by Cristian Galperti's avatar Cristian Galperti
Browse files

init and setup methods for wrappers added

parent 38632384
No related branches found
No related tags found
No related merge requests found
......@@ -31,5 +31,19 @@ classdef SCDclass_wrapper < SCDclass_component
fprintf(' %9s%s\n','',myalgo.getname);
end
end
function init(obj)
for ii=1:numel(obj.algos)
obj.algos(ii).init;
end
end
function setup(obj)
for ii=1:numel(obj.algos)
obj.algos(ii).setup;
end
end
end
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment