view test/@Pork/get.m @ 10505:82ee24bf783c

graphics.h.in: Fix nextplot property values.
author Ben Abbott <bpabbott@mac.com>
date Sat, 10 Apr 2010 11:41:32 -0400
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