OpenCPN Partial API docs
Station_Data.h
1 /******************************************************************************
2  *
3  * Project: OpenCPN
4  *
5  ***************************************************************************
6  * Copyright (C) 2013 by David S. Register *
7  * *
8  * This program is free software; you can redistribute it and/or modify *
9  * it under the terms of the GNU General Public License as published by *
10  * the Free Software Foundation; either version 2 of the License, or *
11  * (at your option) any later version. *
12  * *
13  * This program is distributed in the hope that it will be useful, *
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16  * GNU General Public License for more details. *
17  * *
18  * You should have received a copy of the GNU General Public License *
19  * along with this program; if not, write to the *
20  * Free Software Foundation, Inc., *
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
22  ***************************************************************************
23  */
24 
25 #ifndef __STATION_DATA_H__
26 #define __STATION_DATA_H__
27 
28 #include <wx/defs.h>
29 #include <wx/wxchar.h>
30 #include <wx/dynarray.h>
31 
32 class Station_Data {
33 public:
34  Station_Data();
35  ~Station_Data();
36  char *station_name;
37  wxChar station_type; // T or C
38  double *amplitude;
39  double *epoch;
40  double DATUM;
41  int meridian; // **UNUSED**
42  double zone_offset;
43  char tzfile[40];
44  char unit[40];
45  char units_conv[40]; // printable converted units
46  char units_abbrv[20]; // and abbreviation
47  int have_BOGUS;
48 };
49 
50 WX_DECLARE_OBJARRAY(Station_Data, ArrayOfStationData);
51 
52 #endif
Definition: georef.h:41