30 lines
880 B
C++
30 lines
880 B
C++
#ifndef BILAccessor_h
|
|
#define BILAccessor_h
|
|
|
|
#ifndef MESSAGE
|
|
#define MESSAGE cout << "file " << __FILE__ << " line " << __LINE__ << endl;
|
|
#endif
|
|
#ifndef ERR_MESSAGE
|
|
#define ERR_MESSAGE cout << "Error in file " << __FILE__ << " at line " << __LINE__ << " Exiting" << endl; exit(1);
|
|
#endif
|
|
|
|
#include <iostream>
|
|
#include "InterleavedAccessor.h"
|
|
#include <stdint.h>
|
|
using namespace std;
|
|
|
|
class BILAccessor: public InterleavedAccessor
|
|
{
|
|
public:
|
|
BILAccessor():InterleavedAccessor(){}
|
|
virtual ~BILAccessor(){}
|
|
void init(void * poly);
|
|
void getData(char * buf,int row, int col, int & numEl);
|
|
void getDataBand(char * buf,int row, int col, int & numEl, int band);
|
|
void setData(char * buf,int row, int col, int numEl);
|
|
void setDataBand(char * buf, int row, int col, int numEl, int band);
|
|
protected:
|
|
};
|
|
|
|
#endif //BILAccessor_h
|