view m-toolbox/classes/@history/getObjectClass.m @ 1:2014ba5b353a database-connection-manager

Remove old code
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Sat, 03 Dec 2011 18:13:55 +0100
parents f0afece42f48
children
line wrap: on
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