USGS

Isis 3.0 Developer's Reference (API)

Home

SampleManager.h

Go to the documentation of this file.
00001 #ifndef SampleManager_h
00002 #define SampleManager_h
00003 
00026 #include "BufferManager.h"
00027 #include "Cube.h"
00028 
00029 namespace Isis {
00050   class SampleManager : public Isis::BufferManager {
00051 
00052     public:
00053       // Constructors and Destructors
00054       SampleManager(const Isis::Cube &cube, const bool reverse = false);
00055 
00057       ~SampleManager() {};
00058 
00059       bool SetSample(const int sample, const int band = 1);
00060   };
00061 };
00062 
00063 #endif
00064