view m-toolbox/classes/@minfo/clearSets.m @ 32:e22b091498e4 database-connection-manager

Update makeToolbox
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

% CLEARSETS Clear the sets and plists of the input minfo objects.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: CLEARSETS Clear the sets and plists of the input minfo
%              objects.
%
% CALL:        objs = clearSets(objs)
%              objs.clearSets()
%
% VERSION:     $Id: clearSets.m,v 1.2 2011/01/04 18:14:27 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function objs = clearSets(objs)
  
  % Decide on a deep copy or a modify
  objs = copy(objs, nargout);
  
  for ii = 1:numel(objs)
    objs(ii).sets = {};
    objs(ii).plists = [];
    
    % Clear the sets and plists of the children
    if ~isempty(objs(ii).children)
      clearSets(objs(ii).children);
    end
    
  end
end