Skip to content
Snippets Groups Projects
Commit 2cd927d9 authored by Federico Felici's avatar Federico Felici
Browse files

Yet more cleanup

parent 26b91de5
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,6 @@ classdef SCDclass_algo
end
methods
function obj=SCDclass_algo(name)
%% Constructor
......
......@@ -17,6 +17,7 @@ classdef SCDclass_component
methods
function obj = addalgo(obj,algo)
% add an algorithm object
assert(isa(algo,'SCDclass_algo'));
obj.algos = [obj.algos;algo];
end
......@@ -68,8 +69,5 @@ classdef SCDclass_component
fprintf(str,varargin{:}); fprintf('\n');
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