view m-toolbox/classes/@ssmport/copy.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
line source

% COPY makes a (deep) copy of the input ssmport objects.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: COPY makes a deep copy of the input ssmport objects.
%
% CALL:        b = copy(a, flag)
%
% INPUTS:      a    - input ssmport object
%              flag - 1: make a deep copy, 0: return copies of handles
%
% OUTPUTS:     b - copy of inputs
%
% This is a transparent function and adds no history.
%
% VERSION:     $Id: copy.m,v 1.9 2011/02/21 14:23:01 hewitson Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function varargout = copy(old, deepcopy)
  
  if deepcopy
    % Loop over input ssmport objects
    new = ssmport.newarray(size(old));
    
    for kk=1:numel(old)
      new(kk).name        = old(kk).name;
      
      if isempty(old(kk).units)
      else
        new(kk).units       = copy(old(kk).units, 1);
      end
      
      new(kk).description = old(kk).description;
    end
  else
    new = old;
  end
  
  varargout{1} = new;
end