tzpcside/tzcompiler/Source/TzGlobals.cpp
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // DST TZ Database Compiler 
       
    15 // 
       
    16 //
       
    17 
       
    18 #include "TzGlobals.h"
       
    19 
       
    20 const char KCharOlsonStartOfComment = '#';
       
    21 const char* KOlsonRuleTag = "Rule";
       
    22 const char* KOlsonZoneTag = "Zone";
       
    23 const char* KOlsonLinkTag = "Link";
       
    24 
       
    25 TUint16			TzGlobals::iStartYear;
       
    26 char			TzGlobals::iDefaultZoneName[KMaxZoneNameLength];
       
    27 TUint16			TzGlobals::iRegionMask = 0x7F; // by default, all regions are parsed
       
    28 TUint16			TzGlobals::iNextNumericZoneId = 0;
       
    29 bool			TzGlobals::iIncludeAllRegions = true;
       
    30 std::string		TzGlobals::iIniFilePath;
       
    31 std::string		TzGlobals::iZoneIdIniFilePath;
       
    32 std::string		TzGlobals::iOutputFilePath;
       
    33 std::string		TzGlobals::iInputFilePath;
       
    34 std::vector<std::string>	TzGlobals::iIncludedRegions;
       
    35 std::vector<std::string>	TzGlobals::iExcludedRegions;
       
    36 std::vector<std::string>	TzGlobals::iAvailableRegions;
       
    37 std::vector<std::string>	TzGlobals::iExcludedFiles;
       
    38 std::vector<std::string>	TzGlobals::iAvailableFiles;
       
    39 
       
    40 
       
    41 //============================================================================
       
    42 // End of file
       
    43 //============================================================================