Mercurial > hg > ltpda
view m-toolbox/classes/@minfo/addChildren.m @ 13:e05504b18072 database-connection-manager
Move more functions to utils.repository
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% ADDCHILDREN Add children to this minfo. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: Add a child info object % % CALL: obj.addChildren(mi1, mi2); % % INPUTS: obj - must be a single minfo object. % % VERSION: $Id: addChildren.m,v 1.2 2011/02/18 16:48:53 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = addChildren(varargin) obj = varargin{1}; infos = [varargin{2:end}]; obj.children = [obj.children infos]; varargout{1} = obj; end