author | zecke <zecke> | 2002-09-10 12:37:41 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-09-10 12:37:41 (UTC) |
commit | 9612cb91bf2a7f101e1b935f697e97d290d6c1a9 (patch) (unidiff) | |
tree | 6f65d7fe0149607cc049e3e9a0dbf428e054b4fd /library | |
parent | f244f5ec5351693d366739cfb7bf509d10601cdf (diff) | |
download | opie-9612cb91bf2a7f101e1b935f697e97d290d6c1a9.zip opie-9612cb91bf2a7f101e1b935f697e97d290d6c1a9.tar.gz opie-9612cb91bf2a7f101e1b935f697e97d290d6c1a9.tar.bz2 |
add missing file spotted by Max
-rw-r--r-- | library/timeconversion.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/library/timeconversion.h b/library/timeconversion.h new file mode 100644 index 0000000..e0b8ba8 --- a/dev/null +++ b/library/timeconversion.h | |||
@@ -0,0 +1,45 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of the Qtopia Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | ||
15 | ** | ||
16 | ** Contact info@trolltech.com if any conditions of this licensing are | ||
17 | ** not clear to you. | ||
18 | ** | ||
19 | **********************************************************************/ | ||
20 | |||
21 | #ifndef __timeconversion_h__ | ||
22 | #define __timeconversion_h__ | ||
23 | |||
24 | #include <time.h> | ||
25 | #include <sys/types.h> | ||
26 | #include <qdatetime.h> | ||
27 | |||
28 | #include <qtopia/private/qpcglobal.h> | ||
29 | |||
30 | class QPC_EXPORT TimeConversion | ||
31 | { | ||
32 | public: | ||
33 | static QString toString( const QDate &d ); | ||
34 | static QDate fromString( const QString &datestr ); | ||
35 | |||
36 | static time_t toUTC( const QDateTime& dt ); | ||
37 | static QDateTime fromUTC( time_t time ); | ||
38 | static int secsTo( const QDateTime &from, const QDateTime &to ); | ||
39 | |||
40 | static QCString toISO8601( const QDate & ); | ||
41 | static QCString toISO8601( const QDateTime & ); | ||
42 | static QDateTime fromISO8601( const QCString & ); | ||
43 | }; | ||
44 | |||
45 | #endif // __timeconversion_h__ | ||