00001 #ifndef _WINC_TIMEZONE 00002 #define _WINC_TIMEZONE 00003 00004 namespace WXP { 00005 class Timezone { 00006 char name[10]; 00007 int pm; 00008 int offset; 00009 00010 public: 00011 Timezone( const char *str ); 00012 Timezone(); 00013 int set( const char *str ); 00014 int init(); 00015 bool isSet(); 00016 int getPM(); 00017 int getOffset(); 00018 const char *getName(); 00019 int print(); 00020 }; 00021 } 00022 #endif
1.6.1