Mercurial > hg > ltpda
view m-toolbox/classes/@history/setObjectClass.m @ 51:9d5c88356247 database-connection-manager
Make unit tests database connection parameters configurable
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:24:37 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% SETOBJECTCLASS set the class of object that this history refers to. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: SETOBJECTCLASS set the class of object that this history % refers to. % % CALL: h = setObjectClass(h, class); % h.setObjectClass(class); % % INPUT: h - history object % class - string with the class name. % % VERSION: $Id: setObjectClass.m,v 1.1 2010/08/18 15:15:27 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = setObjectClass(varargin) % Check the inputs if nargin ~= 2 error('### This method accepts only one history object and one class name.'); end h = varargin{1}; cl = varargin{2}; % Decide on a deep copy or a modify h = copy(h, nargout); % Set the class name to the history object h.objectClass = cl; % Define the output varargout{1} = h; end