|
Isis 3.0 Object Programmers' Reference |
Home |
00001 #ifndef BandManager_h 00002 #define BandManager_h 00003 00025 #include "BufferManager.h" 00026 #include "Cube.h" 00027 00028 namespace Isis { 00048 class BandManager : public Isis::BufferManager { 00049 00050 public: 00051 // Constructors and Destructors 00052 BandManager(const Isis::Cube &cube, const bool reverse=false); 00053 00055 ~BandManager() {}; 00056 00057 bool SetBand(const int sample, const int line=1 ); 00058 }; 00059 }; 00060 00061 #endif 00062