1 #import "Image.h"
2 #import <rle.h>
3 
4 // RLE.h
5 //
6 // Written by Vince DeMarco
7 // 	demarco@cpsc.ucalgary.ca
8 //
9 // This program is In the Public Domain. If you make any improvements to this
10 // program please let me know
11 
12 
13 @interface RLE:Image
14 {
15     struct rle_hdr rle_file_hdr;
16 }
17 - init;
18 - open:(char *)filename;
19 @end
20 
21