USGS

Isis 3.0 Object Programmers' Reference

Home

LineManager.h
Go to the documentation of this file.
00001 #ifndef LineManager_h
00002 #define LineManager_h
00003 
00025 #include "BufferManager.h"
00026 #include "Cube.h"
00027 
00028 namespace Isis {
00055   class LineManager : public Isis::BufferManager {
00056 
00057     public:
00058       // Constructors and Destructors
00059       LineManager(const Isis::Cube &cube, const bool reverse = false);
00060 
00062       ~LineManager() {};
00063 
00064       bool SetLine(const int line, const int band = 1);
00065   };
00066 };
00067 
00068 #endif
00069