MemoryCache.h
362 Bytes
//
// MemoryCache.h
// Images
//
// Created by Joseph Gentle on 30/08/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Tile.h"
#import "TileCache.h"
@interface MemoryCache : NSObject<TileCache> {
NSMutableDictionary *cache;
int capacity;
}
-(id)initWithCapacity: (NSUInteger) _capacity;
@end