#ifndef __LUCENE_STORE_RAM_DIRECTORY__ #define __LUCENE_STORE_RAM_DIRECTORY__ #include "LCDirectory.h" @interface LCRAMDirectory: NSObject { NSMutableDictionary *files; } - (id) initWithDirectory: (id ) dir; - (id) initWithDirectory: (id ) dir close: (BOOL) closeDirectory; - (id) initWithPath: (NSString *) absolutePath; @end #endif /* __LUCENE_STORE_RAM_DIRECTORY__ */