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 1595 : void GDALRegister_raw_no_sidecar() 8 : { 9 1595 : GDALRegister_PNM(); 10 1595 : GDALRegister_DOQ1(); 11 1595 : GDALRegister_DOQ2(); 12 1595 : GDALRegister_PAux(); 13 1595 : GDALRegister_MFF(); 14 1595 : GDALRegister_HKV(); 15 1595 : GDALRegister_GSC(); 16 1595 : GDALRegister_FAST(); 17 1595 : GDALRegister_BT(); 18 1595 : GDALRegister_LAN(); 19 1595 : GDALRegister_CPG(); 20 1595 : GDALRegister_NDF(); 21 1595 : GDALRegister_EIR(); 22 1595 : GDALRegister_DIPEx(); 23 1595 : GDALRegister_LCP(); 24 1595 : GDALRegister_GTX(); 25 1595 : GDALRegister_LOSLAS(); 26 1595 : GDALRegister_NTv2(); 27 1595 : GDALRegister_CTable2(); 28 1595 : GDALRegister_ACE2(); 29 1595 : GDALRegister_SNODAS(); 30 1595 : GDALRegister_KRO(); 31 1595 : GDALRegister_ROIPAC(); 32 1595 : GDALRegister_RRASTER(); 33 1595 : GDALRegister_BYN(); 34 1595 : GDALRegister_NOAA_B(); 35 1595 : GDALRegister_NSIDCbin(); 36 1595 : } 37 : 38 1595 : 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 1595 : GDALRegister_GenBin(); 43 1595 : GDALRegister_ENVI(); 44 1595 : GDALRegister_EHdr(); 45 1595 : GDALRegister_ISCE(); 46 1595 : } 47 : 48 0 : void GDALRegister_raw() 49 : { 50 0 : GDALRegister_raw_no_sidecar(); 51 0 : GDALRegister_raw_with_sidecar(); 52 0 : }