home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.bin / SourceCode / OOP_Course / Labs / Stack / Extensions / SquareMatrix / SquareMatrix.h < prev    next >
Encoding:
Text File  |  1993-01-18  |  355 b   |  17 lines

  1. // SquareMatrix.h
  2.  
  3. #import <objc/Object.h>
  4.  
  5. @interface SquareMatrix : Object
  6. {
  7.     int numberOfRows, numberOfColumns;
  8.     id columnList;
  9. }
  10. - initRows:(int)rows ;
  11. - (float)elementAtRow:(int)row column:(int)column;
  12. - setElementAtRow:(int)row column:(int)column to:(float)floatValue;
  13. - transpose;
  14. - (BOOL) checkRow:(int)row column:(int)column;
  15. - printMatrix;
  16. @end
  17.