Isis 3 Programmer Reference
UniqueIOCachingAlgorithm.h
Go to the documentation of this file.
1 
24 #ifndef UniqueIOCachingAlgorithm_h
25 #define UniqueIOCachingAlgorithm_h
26 
27 #include "CubeCachingAlgorithm.h"
28 
29 template <typename A> class QList;
30 template <typename A> class QQueue;
31 
32 namespace Isis {
48  public:
49  UniqueIOCachingAlgorithm(int numUniqueIOs);
50  virtual ~UniqueIOCachingAlgorithm();
51 
54  const Buffer &justRequested);
55 
56  private:
62  };
63 }
64 
65 #endif
Buffer for reading and writing cube data.
Definition: Buffer.h:69
This algorithm is designed for applications that jump around between a couple of spots in the cube wi...
virtual CacheResult recommendChunksToFree(QList< RawCubeChunk *> allocated, QList< RawCubeChunk *> justUsed, const Buffer &justRequested)
Please see the class description for how this algorithm works.
virtual ~UniqueIOCachingAlgorithm()
Frees the memory allocated by this caching algorithm.
UniqueIOCachingAlgorithm(int numUniqueIOs)
Construct a new UniqueIOCachingAlgorithm.
This stores the results of the caching algorithm.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
This is the parent of the caching algorithms
QQueue< QList< RawCubeChunk * > > * m_uniqueIOs
This is the set of past unique IOs.