view test/@Gork/Gork.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 [ s ] = Gork( g )
  if (nargin==1) && isa(g,'Gork')
    s = sprk;
    return;
  end

  drk  = Dork();
  prk  = Pork();
  blrk = Blork();
  s.Cork = Cork(17);  % Aggregation.
  s.gark = -2;
  s.gyrk = -3;
  s = class(s,'Gork',drk,prk,blrk);
   
end