view test/@Dork/Dork.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 ] = Dork( gick, gack )

  if (nargin==1) && isa(gick,'Dork')
    s = gick;
  else
    s.gack = 0;
    if nargin == 0
      s0 = Snork();
    elseif nargin==1
      s0 = Snork(gick);
    else
      s0 = Snork(gick);
      s.gack = gack;
    end
    s = class(s,'Dork',s0);
   end 
   
end