view test/classes/@Spork/loadobj.m @ 18688:11d1f3d1ab0d draft

Fully single type support & clean the code
author LYH <lyh.kernel@gmail.com>
date Fri, 21 Mar 2014 14:59:38 -0400
parents 4448cc742880
children
line wrap: on
line source

function out = loadobj (in)

  out = in;
  if (!isa (in, 'Spork'))
    out.cack = [];
  end

end