#ifndef __LUCENE_STORE_RAM_DIRECTORY__
#define __LUCENE_STORE_RAM_DIRECTORY__

#include "LCDirectory.h"

@interface LCRAMDirectory: NSObject <LCDirectory>
{
	NSMutableDictionary *files;
}

- (id) initWithDirectory: (id <LCDirectory>) dir;
- (id) initWithDirectory: (id <LCDirectory>) dir
                   close: (BOOL) closeDirectory;
- (id) initWithPath: (NSString *) absolutePath;

@end

#endif /* __LUCENE_STORE_RAM_DIRECTORY__ */


syntax highlighted by Code2HTML, v. 0.9.1