1 // Copyright 2017 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #ifndef XFA_FXFA_PARSER_CXFA_TIMEZONEPROVIDER_H_ 8 #define XFA_FXFA_PARSER_CXFA_TIMEZONEPROVIDER_H_ 9 10 class CXFA_TimeZoneProvider { 11 public: 12 CXFA_TimeZoneProvider(); 13 ~CXFA_TimeZoneProvider(); 14 GetTimeZoneInMinutes()15 int GetTimeZoneInMinutes() const { return tz_minutes_; } 16 17 private: 18 int tz_minutes_; 19 }; 20 21 #endif // XFA_FXFA_PARSER_CXFA_TIMEZONEPROVIDER_H_ 22