view test/classes/@Blork/get.m @ 20114:52d2bbf49c92 rc-4-0-0-1

maint: Bump version number for 4.0.0-rc1.
author John W. Eaton <jwe@octave.org>
date Thu, 05 Mar 2015 10:12:26 -0500
parents b1283d4c06c2
children
line wrap: on
line source

function v = get (s, propName)

  switch propName
    case 'bleek'
      v = s.bleek;
    otherwise
      error ([propName, ' is not a valid Blork property']);
  end

end