template<class dictbase, class type>
Constructs an instance with maximum cost maxCost and dictionary size size.
Definition at line 131 of file FXLRUCache.h. 00132 : dictbase(size), topmax(maxCost), maximum(maxCost), cost(0), amDynamic(true) 00133 { 00134 dynMax(); 00135 setAutoDelete(autodel); 00136 }
|