1 // ----------------------------------------------------------------------------
2 // Copyright (C) 2014
3 //              David Freese, W1HKJ
4 //
5 // This file is part of flmsg
6 //
7 // flrig is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // flrig is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 // ----------------------------------------------------------------------------
20 
21 //======================================================================
22 // external weather string arrays
23 //======================================================================
24 #ifndef WX_STRINGS_H
25 #define WX_STRINGS_H
26 
27 #include <string>
28 
29 extern const std::string counties;
30 extern const std::string states[];
31 extern int numstates;
32 extern const std::string hail_size[];
33 extern int num_hail_size;
34 extern const std::string tzones[];
35 extern int num_tzones;
36 extern const std::string us_tzones[];
37 extern int num_us_tzones;
38 
39 extern const std::string flood_categories[];
40 extern int num_flood_categories;
41 extern const std::string hail_size[];
42 extern int num_hail_size;
43 extern const std::string wind_speeds[];
44 extern int num_wind_speeds;
45 extern const std::string damage[];
46 extern int num_damage;
47 extern const std::string snow_tot[];
48 extern int num_snow_tot;
49 extern const std::string snow_dur[];
50 extern int num_snow_dur;
51 extern const std::string ice_tot[];
52 extern int num_ice_tot;
53 extern const std::string ice_dur[];
54 extern int num_ice_dur;
55 extern const std::string rainfall[];
56 extern int num_rainfall;
57 extern const std::string rainfall_dur[];
58 extern int num_rainfall_dur;
59 extern const std::string profiles[];
60 extern int num_profiles;
61 extern const std::string tornado_categories[];
62 extern int num_tornado_categories;
63 
64 #endif
65