First public contribution.
1 // Copyright (c) 2002-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file contains the class TInternetDate
25 #ifndef __TINTERNETDATE_H__
26 #define __TINTERNETDATE_H__
31 Stores dates in universal time and provides parsing of internet style dates
32 into TDateTime and RFC 1123 (updates RFC 822) dates.
34 Supports parsing of the following date formats:
35 Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123
36 Sunday, 06-Nov-94 08:49:37 GMT ; RFC 850, obsoleted by RFC 1036
37 Sun Nov 6 08:49:37 1994 ; ANSI C's asctime() format
39 In case of Date Formats with offsets "Mon, 21 Jan 2002 23:00:00 +0210" , equivalent
40 time in UTC can be determined by substracting the offset from the local time (RFC 3339).
42 All dates are store relative to Universal Time and not local time.
52 Enum defining internet date formats.
57 enum TInternetDateFormat
60 Rfc 1123 Compliant date format
65 inline TInternetDate();
68 inline TInternetDate(TDateTime aUniversalTime);
70 IMPORT_C void SetDateL(const TDesC8& aDate);
72 IMPORT_C const TDateTime& DateTime();
74 IMPORT_C HBufC8* InternetDateTimeL(TInternetDateFormat aInternetDateFormat);
78 A date and time object
85 Intended Usage: Default Constructor. Used when setting dates that are in a text format using SetDateL
89 inline TInternetDate::TInternetDate()
93 Intended Usage: Constructor. Used when setting a date that you later want parsed into an internet text format
96 @param aUniversalTime a time that should correspond to Universal Time.
98 inline TInternetDate::TInternetDate(TDateTime aUniversalTime) :
99 iDateTime(aUniversalTime)
103 #endif // __TINTERNETDATE_H__