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 2129 : void GDALRegister_raw_no_sidecar() 8 : { 9 2129 : GDALRegister_PNM(); 10 2129 : GDALRegister_DOQ1(); 11 2129 : GDALRegister_DOQ2(); 12 2129 : GDALRegister_MFF(); 13 2129 : GDALRegister_HKV(); 14 2129 : GDALRegister_GSC(); 15 2129 : GDALRegister_FAST(); 16 2129 : GDALRegister_BT(); 17 2129 : GDALRegister_LAN(); 18 2129 : GDALRegister_CPG(); 19 2129 : GDALRegister_NDF(); 20 2129 : GDALRegister_EIR(); 21 2129 : GDALRegister_LCP(); 22 2129 : GDALRegister_GTX(); 23 2129 : GDALRegister_LOSLAS(); 24 2129 : GDALRegister_NTv2(); 25 2129 : GDALRegister_ACE2(); 26 2129 : GDALRegister_SNODAS(); 27 2129 : GDALRegister_KRO(); 28 2129 : GDALRegister_ROIPAC(); 29 2129 : GDALRegister_RRASTER(); 30 2129 : GDALRegister_BYN(); 31 2129 : GDALRegister_NOAA_B(); 32 2129 : GDALRegister_NSIDCbin(); 33 2129 : GDALRegister_CPHD(); 34 2129 : } 35 : 36 2129 : void GDALRegister_raw_with_sidecar() 37 : { 38 : // Drivers that that absolutely need to look for side car files in their 39 : // Identify()/Open() procedure. 40 2129 : GDALRegister_PAux(); 41 2129 : GDALRegister_GenBin(); 42 2129 : GDALRegister_ENVI(); 43 2129 : GDALRegister_EHdr(); 44 2129 : GDALRegister_ISCE(); 45 2129 : } 46 : 47 0 : void GDALRegister_raw() 48 : { 49 0 : GDALRegister_raw_no_sidecar(); 50 0 : GDALRegister_raw_with_sidecar(); 51 0 : }