]> git.mxchange.org Git - simgear.git/blob - simgear/timing/timezone.h
Frederic Bouvier:
[simgear.git] / simgear / timing / timezone.h
1 /* -*- Mode: C++ -*- *****************************************************
2  * timezone.h
3  * Written by Durk Talsma. Started July 1999.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA  02111-1307, USA.
19  *
20  **************************************************************************/
21
22 /** \file timezone.h
23  *
24  * Provides SGTimeZone and SGTimeZoneContainer
25  *
26  */
27
28 #ifndef _TIMEZONE_H_
29 #define _TIMEZONE_H_
30
31 #include <stdio.h>
32
33 #include <simgear/timing/geocoord.h>
34
35 /**
36  * SGTimeZone is derived from geocoord, and stores the timezone centerpoint,
37  * as well as the countrycode and the timezone descriptor. The latter is 
38  * used in order to get the local time. 
39  *
40  */
41
42 class SGTimeZone : public SGGeoCoord
43 {
44
45 private:
46
47   string countryCode;
48   string descriptor;
49
50 public:
51
52     /**
53      * Default constructor.
54      */
55     SGTimeZone() : SGGeoCoord()
56     {
57         countryCode.erase(); 
58         descriptor.erase();
59     };
60
61     /**
62      * Build a timezone object with a specifed latitude, longitude, country
63      * code, and descriptor
64      * @param la latitude
65      * @param lo longitude
66      * @param cc country code
67      * @param desc descriptor
68      */
69     SGTimeZone(float la, float lo, char* cc, char* desc);
70
71     /**
72      * Build a timezone object from a textline in zone.tab
73      * @param infoString the textline from zone.tab
74      */
75     SGTimeZone(const char *infoString);
76
77     /**
78      * The copy constructor
79      * @param other the source object
80      */
81     SGTimeZone(const SGTimeZone &other);
82
83     /**
84      * Virutal destructor 
85      */
86     virtual ~SGTimeZone() { };
87   
88     /**
89      * Print the descriptor string
90      */
91     virtual void print() { printf("%s", descriptor.c_str()); }
92
93     /**
94      * Return the descriptor string
95      * @return descriptor string (char array)
96      */
97     virtual const char * getDescription() { return descriptor.c_str(); };
98 };
99
100 /**
101  * SGTimeZoneContainer is derived from SGGeoCoordContainer, and has some 
102  * added functionality.
103  */
104
105 class SGTimeZoneContainer : public SGGeoCoordContainer
106 {
107  public:
108   SGTimeZoneContainer(const char *filename);
109   virtual ~SGTimeZoneContainer();
110 };
111
112
113
114 #endif // _TIMEZONE_H_