]> git.mxchange.org Git - simgear.git/blob - simgear/timing/timezone.h
ce3521befaaa0b548a9dce79746eb97d55186efa
[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 /*************************************************************************
23  *
24  * Timezone is derived from geocoord, and stores the timezone centerpoint,
25  * as well as the countrycode and the timezone descriptor. The latter is 
26  * used in order to get the local time. 
27  *
28  ************************************************************************/
29
30 #ifndef _TIMEZONE_H_
31 #define _TIMEZONE_H_
32
33 #include <stdio.h>
34
35 #include <simgear/timing/geocoord.h>
36
37 class Timezone : public GeoCoord
38 {
39 private:
40   char* countryCode;
41   char* descriptor;
42
43 public:
44   Timezone() :
45     GeoCoord()
46     { 
47       countryCode = 0; 
48       descriptor = 0;
49     };
50   Timezone(float la, float lo, char* cc, char* desc);
51   Timezone(const char *infoString);
52   Timezone(const Timezone &other);
53   virtual ~Timezone() { delete [] countryCode; delete [] descriptor; };
54   
55
56   virtual void print() { printf("%s", descriptor);};
57   virtual char * getDescription() { return descriptor; };
58 };
59
60 /************************************************************************
61  * Timezone container is derived from GeoCoordContainer, and has some 
62  * added functionality.
63  ************************************************************************/
64
65 class TimezoneContainer : public GeoCoordContainer
66 {
67  public:
68   TimezoneContainer(const char *filename);
69   virtual ~TimezoneContainer();
70 };
71
72
73
74 #endif // _TIMEZONE_H_