view test/@Pork/get.m @ 12302:1b71befc2f40 release-3-4-x

oct-parse.yy (class stdio_stream_reader): disallow copying
author Pascal Dupuis <Pascal.Dupuis@uclouvain.be>
date Sun, 30 Jan 2011 04:38:10 -0500
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