16 #ifndef QGSTILECACHE_H 
   17 #define QGSTILECACHE_H 
   19 #include "qgis_core.h" 
   45     static void insertTile( 
const QUrl &url, 
const QImage &image );
 
   51     static bool tile( 
const QUrl &url, QImage &image );
 
   54     static int totalCost();
 
   60     static QCache<QUrl, QImage> sTileCache;
 
   62     static QMutex sTileCacheMutex;
 
A simple tile cache implementation.