#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