/*
MathTemplateArray - Template for several number array classes
Copyright (C) 1995, Adam Fedor
This header file is not actually used, but it gives an idea of what methods
a subclass of MathArray should respond to.
$Id: MathTemplateArray.h,v 1.5 2003/03/04 05:25:34 fedor Exp $
*/
#include "MathArray.h"
@interface MathTemplateArray : MathArray
{
// Don't, I say, don't define any instance variables in subclasses
// of MathArray! ok!
}
+ (unsigned long)precision;
+ (const char *)objCType;
- convertFromObjCType:(const char *)type;
- maAbs;
- maInvert;
- (id <NSNumber,ComplexNumber>)maMinimumValue;
- (id <NSNumber,ComplexNumber>)maMaximumValue;
- (id <NSNumber,ComplexNumber>)maTotal;
- maWhere;
@end
syntax highlighted by Code2HTML, v. 0.9.1