1 //
2 //  KTMutableMatrixImp
3 //  KTMatrix
4 //
5 //  Implements a mutable KTMutableMatrix subclass
6 //
7 //  Copyright (c) 2002 Chris Purcell. All rights reserved.
8 //
9 //  You may use this code for whatever purposes you wish.
10 //  This code comes with no warranties, implied or otherwise.
11 //  Using it may damage your data. It shouldn't, but save a copy first.
12 //  That's a good idea anyway, actually.
13 //
14 
15 #import <Foundation/Foundation.h>
16 #import "KTMutableMatrix.h"
17 
18 @interface KTMutableMatrixImp : KTMutableMatrix
19 {
20     NSMutableDictionary *matrix;
21     id<KTLocationHash> hash;
22 }
23 
24 @end
25