Source Code (Use browser search to find items of interest.)
Class Index
qt'QCacheItem (./qt-2.1.0/src/tools/qgcache.cpp:47)
struct QCacheItem
{
QCacheItem( void *k, QCollection::Item d, int c, short p )
: priority(p), skipPriority(p), cost(c), key(k), data(d), node(0) {}
short priority;
short skipPriority;
int cost;
void *key;
QCollection::Item data;
QLNode *node;
};
/*****************************************************************************
QCList class (internal list of cache items)
*****************************************************************************/