view test/@Pork/get.m @ 11527:a10544c699f2

Remove texas_lotto from Automake build system.
author Rik <octave@nomad.inbox5.com>
date Fri, 14 Jan 2011 11:54:39 -0800
parents f9ab19428cd8
children
line wrap: on
line source

function [ v ] = get( s, propName )

  switch propName
    case 'gurk'
      v = s.gurk;
    otherwise
      v = get(s.Spork,propName);
  end

end