Mercurial > hg > ltpda
view m-toolbox/classes/+utils/@helper/getObjectFromStruct.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
function obj = getObjectFromStruct(obj_struct) if isa(obj_struct, 'ltpda_obj') obj = obj_struct; else objCl = utils.helper.getClassFromStruct(obj_struct); if ~isempty(objCl) % Call constructor of the data class obj = feval(objCl, obj_struct); else obj = obj_struct; end end end