Blame view

envi/bil.h 281 Bytes
180d7f3a   David Mayerich   added binary file...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  #ifndef RTS_BIL_H
  #define RTS_BIL_H
  
  #include "../envi/envi.h"
  
  namespace rts{
  
  //This class specifies a BIL binary file that can be streamed to and from storage media
  template< typename T >
  class bil{
  
  protected:
  
  	rts::envi header;
  
  
  public:
  
  	bil(){
  		init();
  	}
  
  };
  
  }
  
  #endif