Mercurial > hg > ltpda
view m-toolbox/classes/@ltpda_uoh/clearHistory.m @ 28:01b86b780ba7 database-connection-manager
Remove LTPDARepositoryManager implementation. Java code
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% CLEARHISTORY Clears the history of an object with history. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: CLEARHISTORY Clears the history of an object with history. % This is a hidden method and use this method carefully. % % CALL: objs = clearHistory(objs) % objs = objs.clearHistory() % % VERSION: $Id: clearHistory.m,v 1.3 2011/04/08 08:56:30 hewitson Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = clearHistory(varargin) for kk=1:nargin if isa(varargin{kk}, 'ltpda_uoh') varargin{kk}.hist = []; end end varargout = varargin; end