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