Isis 3 Programmer Reference
BandManager.h
Go to the documentation of this file.
1 #ifndef BandManager_h
2 #define BandManager_h
3 
25 #include "BufferManager.h"
26 #include "Cube.h"
27 
28 namespace Isis {
49 
50  public:
51  // Constructors and Destructors
52  BandManager(const Isis::Cube &cube, const bool reverse = false);
53 
56 
57  bool SetBand(const int sample, const int line = 1);
58  };
59 };
60 
61 #endif
62 
Manages a Buffer over a cube.
Definition: BufferManager.h:68
bool SetBand(const int sample, const int line=1)
Positions the buffer at the requested line and returns a status indicator if the set was succesful or...
Definition: BandManager.cpp:58
~BandManager()
Destroys the SampleManager object.
Definition: BandManager.h:55
Buffer manager, for moving through a cube in bands.
Definition: BandManager.h:48
BandManager(const Isis::Cube &cube, const bool reverse=false)
Constructs a BandManager object.
Definition: BandManager.cpp:42
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
IO Handler for Isis Cubes.
Definition: Cube.h:170