view test/@Gork/get.m @ 9381:f9ab19428cd8

* run-octave.in: Exclude @-files from path. Remove CVS exclusions. * test: Add class directories for testing. * ov-class.cc: Add tests.
author Robert T. Short <octave@phaselockedsystems.com>
date Tue, 23 Jun 2009 14:13:47 -0400
parents
children
line wrap: on
line source

function [ v ] = get( s, propName )

  switch propName
    case 'cork'
      v = s.Cork;
    case 'gark'
      v = s.gark;
    otherwise
      % Note that get/set for multiple parents is hard.  We only do one
      % branch of the parent tree just to test this stuff out.
      v = get(s.Dork,propName);
  end

end