view m-toolbox/classes/@history/getObjectClass.m @ 9:fbbfcd56e449
database-connection-manager
Remove dead code
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % GETOBJECTCLASS get the class of object that this history refers to.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: GETOBJECTCLASS get the class of object that this history
+ − % refers to.
+ − %
+ − % CALL: cl = getObjectClass(h);
+ − %
+ − % INPUT: h - history object
+ − %
+ − % OUTPUT: cl - the class that this history refers to
+ − %
+ − % VERSION: $Id: getObjectClass.m,v 1.6 2010/08/18 15:15:54 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = getObjectClass(varargin)
+ −
+ − % Check the inputs
+ − if nargin ~= 1
+ − error('### This method accepts only one history object.');
+ − end
+ −
+ − h = varargin{1};
+ −
+ − varargout{1} = h.objectClass;
+ − end
+ −