API  1.0.0
CPCache.h
Go to the documentation of this file.
1 
2 @interface CPCache : CPObject
3 {
4  CPDictionary _items;
5  int _currentPosition;
6  int _totalCostCache;
7  unsigned _implementedDelegateMethods;
8 
9  CPString _name // @accessors(property=name);
10  int _countLimit // @accessors(property=countLimit);
11  int _totalCostLimit // @accessors(property=totalCostLimit);
12  id <CPCacheDelegate> _delegate // @accessors(property=delegate);
13 }
14 @end
A collection-like container with discardable objects.
Definition: CPCache.h:2
A mutable key-value pair collection.
Definition: CPDictionary.h:2
An immutable string (collection of characters).
Definition: CPString.h:2