From 0cf642f763b1ab8cdb3c52db80cf38e380c82a19 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 29 Mar 2017 14:50:40 -0400 Subject: Rename CFX_Unitime to CFX_DateTime MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The name Unitime did not give any indication of what the class contained. This Cl renames to DateTime to more accurately refect the class holds a date and time. Change-Id: I95f96224822f46a7da46ae39c71d2e23fc16f7d5 Reviewed-on: https://pdfium-review.googlesource.com/3255 Commit-Queue: dsinclair Reviewed-by: Nicolás Peña --- xfa/fgas/localization/fgas_datetime.h | 106 ---------------------------------- 1 file changed, 106 deletions(-) delete mode 100644 xfa/fgas/localization/fgas_datetime.h (limited to 'xfa/fgas/localization/fgas_datetime.h') diff --git a/xfa/fgas/localization/fgas_datetime.h b/xfa/fgas/localization/fgas_datetime.h deleted file mode 100644 index 9225dccaaa..0000000000 --- a/xfa/fgas/localization/fgas_datetime.h +++ /dev/null @@ -1,106 +0,0 @@ -// Copyright 2014 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#ifndef XFA_FGAS_LOCALIZATION_FGAS_DATETIME_H_ -#define XFA_FGAS_LOCALIZATION_FGAS_DATETIME_H_ - -#include "core/fxcrt/fx_system.h" - -class CFX_Unitime; -class CFX_DateTime; - -bool FX_IsLeapYear(int32_t iYear); -uint8_t FX_DaysInMonth(int32_t iYear, uint8_t iMonth); - -class CFX_Unitime { - public: - CFX_Unitime() - : year_(0), - month_(0), - day_(0), - hour_(0), - minute_(0), - second_(0), - millisecond_(0) {} - CFX_Unitime(int32_t year, - uint8_t month, - uint8_t day, - uint8_t hour, - uint8_t minute, - uint8_t second, - uint16_t millisecond) - : year_(year), - month_(month), - day_(day), - hour_(hour), - minute_(minute), - second_(second), - millisecond_(millisecond) {} - - void Now(); - - void Reset() { - year_ = 0; - month_ = 0; - day_ = 0; - hour_ = 0; - minute_ = 0; - second_ = 0; - millisecond_ = 0; - } - - bool IsSet() const { - return year_ != 0 || month_ != 0 || day_ != 0 || hour_ != 0 || - minute_ != 0 || second_ != 0 || millisecond_ != 0; - } - - void SetDate(int32_t year, uint8_t month, uint8_t day) { - year_ = year; - month_ = month; - day_ = day; - } - - void SetTime(uint8_t hour, - uint8_t minute, - uint8_t second, - uint16_t millisecond) { - hour_ = hour; - minute_ = minute; - second_ = second; - millisecond_ = millisecond; - } - - int32_t GetYear() const { return year_; } - uint8_t GetMonth() const { return month_; } - uint8_t GetDay() const { return day_; } - uint8_t GetHour() const { return hour_; } - uint8_t GetMinute() const { return minute_; } - uint8_t GetSecond() const { return second_; } - uint16_t GetMillisecond() const { return millisecond_; } - int32_t GetDayOfWeek() const; - - private: - int32_t year_; - uint8_t month_; - uint8_t day_; - uint8_t hour_; - uint8_t minute_; - uint8_t second_; - uint16_t millisecond_; -}; - -#if _FX_OS_ != _FX_ANDROID_ -#pragma pack(push, 1) -#endif -struct FX_TIMEZONE { - int8_t tzHour; - uint8_t tzMinute; -}; -#if _FX_OS_ != _FX_ANDROID_ -#pragma pack(pop) -#endif - -#endif // XFA_FGAS_LOCALIZATION_FGAS_DATETIME_H_ -- cgit v1.2.3