Isis 3 Programmer Reference
LineManager.h
Go to the documentation of this file.
1 #ifndef LineManager_h
2 #define LineManager_h
3 
25 #include "BufferManager.h"
26 #include "Cube.h"
27 
28 namespace Isis {
56 
57  public:
58  // Constructors and Destructors
59  LineManager(const Isis::Cube &cube, const bool reverse = false);
60 
63 
64  bool SetLine(const int line, const int band = 1);
65  };
66 };
67 
68 #endif
69 
bool SetLine(const int line, const int band=1)
Positions the buffer at the requested line and returns a status indicator if the set was succesful or...
Definition: LineManager.cpp:60
Buffer manager, for moving through a cube in lines.
Definition: LineManager.h:55
~LineManager()
Destroys the LineManager object.
Definition: LineManager.h:62
Manages a Buffer over a cube.
Definition: BufferManager.h:68
LineManager(const Isis::Cube &cube, const bool reverse=false)
Constructs a LineManager object.
Definition: LineManager.cpp:43
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
IO Handler for Isis Cubes.
Definition: Cube.h:170