Line data Source code
1 : #include "gdal_frmts.h" 2 : 3 : extern "C" void CPL_DLL GDALRegister_raw(); 4 : extern "C" void CPL_DLL GDALRegister_raw_no_sidecar(); 5 : extern "C" void CPL_DLL GDALRegister_raw_with_sidecar(); 6 : 7 1682 : void GDALRegister_raw_no_sidecar() 8 : { 9 1682 : GDALRegister_PNM(); 10 1682 : GDALRegister_DOQ1(); 11 1682 : GDALRegister_DOQ2(); 12 1682 : GDALRegister_PAux(); 13 1682 : GDALRegister_MFF(); 14 1682 : GDALRegister_HKV(); 15 1682 : GDALRegister_GSC(); 16 1682 : GDALRegister_FAST(); 17 1682 : GDALRegister_BT(); 18 1682 : GDALRegister_LAN(); 19 1682 : GDALRegister_CPG(); 20 1682 : GDALRegister_NDF(); 21 1682 : GDALRegister_EIR(); 22 1682 : GDALRegister_DIPEx(); 23 1682 : GDALRegister_LCP(); 24 1682 : GDALRegister_GTX(); 25 1682 : GDALRegister_LOSLAS(); 26 1682 : GDALRegister_NTv2(); 27 1682 : GDALRegister_CTable2(); 28 1682 : GDALRegister_ACE2(); 29 1682 : GDALRegister_SNODAS(); 30 1682 : GDALRegister_KRO(); 31 1682 : GDALRegister_ROIPAC(); 32 1682 : GDALRegister_RRASTER(); 33 1682 : GDALRegister_BYN(); 34 1682 : GDALRegister_NOAA_B(); 35 1682 : GDALRegister_NSIDCbin(); 36 1682 : } 37 : 38 1682 : void GDALRegister_raw_with_sidecar() 39 : { 40 : // Drivers that that absolutely need to look for side car files in their 41 : // Identify()/Open() procedure. 42 1682 : GDALRegister_GenBin(); 43 1682 : GDALRegister_ENVI(); 44 1682 : GDALRegister_EHdr(); 45 1682 : GDALRegister_ISCE(); 46 1682 : } 47 : 48 0 : void GDALRegister_raw() 49 : { 50 0 : GDALRegister_raw_no_sidecar(); 51 0 : GDALRegister_raw_with_sidecar(); 52 0 : }