8#ifndef CubeCachingAlgorithm_h 
    9#define CubeCachingAlgorithm_h 
   11template <
typename T> 
class QList;
 
   77          QList<RawCubeChunk *> allocated, QList<RawCubeChunk *> justUsed,
 
   78          const Buffer &justRequested) = 0;
 
 
Buffer for reading and writing cube data.
 
This stores the results of the caching algorithm.
 
CacheResult & operator=(const CacheResult &other)
Assign one cache result to another.
 
QList< RawCubeChunk * > getChunksToFree() const
 
CacheResult()
Construct a cache algorithm result with the idea that the algorithm did not understand/was unable to ...
 
bool algorithmUnderstoodData() const
If this is true, then the results (be them empty or not) should be considered valid.
 
virtual ~CacheResult()
Free allocated memory.
 
QList< RawCubeChunk * > * m_chunksToFree
If NULL, the algorithm did not succeed.
 
This is the parent of the caching algorithms.
 
virtual CacheResult recommendChunksToFree(QList< RawCubeChunk * > allocated, QList< RawCubeChunk * > justUsed, const Buffer &justRequested)=0
Call this to determine which chunks should be freed from memory.
 
CubeCachingAlgorithm()
Construct a caching algorithm.
 
virtual ~CubeCachingAlgorithm()
Cleans up after a caching algorithm.
 
This is free and unencumbered software released into the public domain.
 
This is free and unencumbered software released into the public domain.