Cappuccino  1.0.0
 All Classes Files Functions Variables Typedefs Macros Groups Pages
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