A<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://www.cppe.ru/index.php?action=history&amp;feed=atom&amp;title=C%2B%2B%2FQt%2FQDate</id>
		<title>C++/Qt/QDate - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.cppe.ru/index.php?action=history&amp;feed=atom&amp;title=C%2B%2B%2FQt%2FQDate"/>
		<link rel="alternate" type="text/html" href="http://www.cppe.ru/index.php?title=C%2B%2B/Qt/QDate&amp;action=history"/>
		<updated>2026-04-18T18:42:36Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.cppe.ru/index.php?title=C%2B%2B/Qt/QDate&amp;diff=1066&amp;oldid=prev</id>
		<title> в 14:21, 25 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://www.cppe.ru/index.php?title=C%2B%2B/Qt/QDate&amp;diff=1066&amp;oldid=prev"/>
				<updated>2010-05-25T14:21:06Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 14:21, 25 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://www.cppe.ru/index.php?title=C%2B%2B/Qt/QDate&amp;diff=1067&amp;oldid=prev</id>
		<title>Admin: 1 версия:&amp;#32;Импорт контента...</title>
		<link rel="alternate" type="text/html" href="http://www.cppe.ru/index.php?title=C%2B%2B/Qt/QDate&amp;diff=1067&amp;oldid=prev"/>
				<updated>2010-05-25T10:24:43Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия: Импорт контента...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==QDate and QLocale==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;  &lt;br /&gt;
Foundations of Qt Development\Chapter10\locales\main.cpp&lt;br /&gt;
/*&lt;br /&gt;
 * Copyright (c) 2006-2007, Johan Thelin&lt;br /&gt;
 * &lt;br /&gt;
 * All rights reserved.&lt;br /&gt;
 * &lt;br /&gt;
 * Redistribution and use in source and binary forms, with or without modification, &lt;br /&gt;
 * are permitted provided that the following conditions are met:&lt;br /&gt;
 * &lt;br /&gt;
 *     * Redistributions of source code must retain the above copyright notice, &lt;br /&gt;
 *       this list of conditions and the following disclaimer.&lt;br /&gt;
 *     * Redistributions in binary form must reproduce the above copyright notice,  &lt;br /&gt;
 *       this list of conditions and the following disclaimer in the documentation &lt;br /&gt;
 *       and/or other materials provided with the distribution.&lt;br /&gt;
 *     * Neither the name of APress nor the names of its contributors &lt;br /&gt;
 *       may be used to endorse or promote products derived from this software &lt;br /&gt;
 *       without specific prior written permission.&lt;br /&gt;
 * &lt;br /&gt;
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS&lt;br /&gt;
 * &amp;quot;AS IS&amp;quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT&lt;br /&gt;
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR&lt;br /&gt;
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR&lt;br /&gt;
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,&lt;br /&gt;
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,&lt;br /&gt;
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR&lt;br /&gt;
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF&lt;br /&gt;
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING&lt;br /&gt;
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS&lt;br /&gt;
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&lt;br /&gt;
 *&lt;br /&gt;
 */&lt;br /&gt;
#include &amp;lt;QApplication&amp;gt;&lt;br /&gt;
#include &amp;lt;QLocale&amp;gt;&lt;br /&gt;
#include &amp;lt;QDate&amp;gt;&lt;br /&gt;
#include &amp;lt;QTime&amp;gt;&lt;br /&gt;
#include &amp;lt;QString&amp;gt;&lt;br /&gt;
#include &amp;lt;QtDebug&amp;gt;&lt;br /&gt;
void printDates( QLocale loc )&lt;br /&gt;
{&lt;br /&gt;
  QLocale::setDefault( loc );&lt;br /&gt;
  QDate d1( 2006, 10, 12 );&lt;br /&gt;
  QDate d2( 2006, 01, 31 );&lt;br /&gt;
  QDate d3( 2006, 06, 06 );  &lt;br /&gt;
    &lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;short&amp;quot;;&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( d1, QLocale::ShortFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( d2, QLocale::ShortFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( d3, QLocale::ShortFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;long&amp;quot;;&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( d1, QLocale::LongFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( d2, QLocale::LongFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( d3, QLocale::LongFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;default&amp;quot;;&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( d1 );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( d2 );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( d3 );&lt;br /&gt;
}&lt;br /&gt;
void printTimes( QLocale loc )&lt;br /&gt;
{&lt;br /&gt;
  QLocale::setDefault( loc );&lt;br /&gt;
    &lt;br /&gt;
  QTime t1( 6, 15, 45 );&lt;br /&gt;
  QTime t2( 12, 00, 00 );&lt;br /&gt;
  QTime t3( 18, 20, 25 );&lt;br /&gt;
  &lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;short&amp;quot;;&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( t1, QLocale::ShortFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( t2, QLocale::ShortFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( t3, QLocale::ShortFormat );&lt;br /&gt;
    &lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;long&amp;quot;;&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( t1, QLocale::LongFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( t2, QLocale::LongFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( t3, QLocale::LongFormat );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;default&amp;quot;;&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( t1 );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( t2 );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( t3 );&lt;br /&gt;
}&lt;br /&gt;
void printValues( QLocale loc )&lt;br /&gt;
{&lt;br /&gt;
  QLocale::setDefault( loc );&lt;br /&gt;
    &lt;br /&gt;
  double v1 = 3.1415;&lt;br /&gt;
  double v2 = 31415;&lt;br /&gt;
  double v3 = 1000.001;&lt;br /&gt;
  &lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( v1 );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( v2 );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; loc.toString( v3 );&lt;br /&gt;
}&lt;br /&gt;
int main( int argc, char **argv )&lt;br /&gt;
{&lt;br /&gt;
  QApplication app( argc, argv );&lt;br /&gt;
  &lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;Dates&amp;quot;;&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;Swedish&amp;quot;;&lt;br /&gt;
  printDates( QLocale( QLocale::Swedish, QLocale::Sweden ) );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;US English&amp;quot;;&lt;br /&gt;
  printDates( QLocale( QLocale::English, QLocale::UnitedStates ) );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;Times&amp;quot;;&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;Swedish&amp;quot;;&lt;br /&gt;
  printTimes( QLocale( QLocale::Swedish, QLocale::Sweden ) );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;US English&amp;quot;;&lt;br /&gt;
  printTimes( QLocale( QLocale::English, QLocale::UnitedStates ) );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;Values&amp;quot;;&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;Swedish&amp;quot;;&lt;br /&gt;
  printValues( QLocale( QLocale::Swedish, QLocale::Sweden ) );&lt;br /&gt;
  qDebug() &amp;lt;&amp;lt; &amp;quot;US English&amp;quot;;&lt;br /&gt;
  printValues( QLocale( QLocale::English, QLocale::UnitedStates ) );&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Qt class test==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
Foundations of Qt Development\Chapter16\classtest\datetest.cpp&lt;br /&gt;
/*&lt;br /&gt;
 * Copyright (c) 2006-2007, Johan Thelin&lt;br /&gt;
 * &lt;br /&gt;
 * All rights reserved.&lt;br /&gt;
 * &lt;br /&gt;
 * Redistribution and use in source and binary forms, with or without modification, &lt;br /&gt;
 * are permitted provided that the following conditions are met:&lt;br /&gt;
 * &lt;br /&gt;
 *     * Redistributions of source code must retain the above copyright notice, &lt;br /&gt;
 *       this list of conditions and the following disclaimer.&lt;br /&gt;
 *     * Redistributions in binary form must reproduce the above copyright notice,  &lt;br /&gt;
 *       this list of conditions and the following disclaimer in the documentation &lt;br /&gt;
 *       and/or other materials provided with the distribution.&lt;br /&gt;
 *     * Neither the name of APress nor the names of its contributors &lt;br /&gt;
 *       may be used to endorse or promote products derived from this software &lt;br /&gt;
 *       without specific prior written permission.&lt;br /&gt;
 * &lt;br /&gt;
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS&lt;br /&gt;
 * &amp;quot;AS IS&amp;quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT&lt;br /&gt;
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR&lt;br /&gt;
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR&lt;br /&gt;
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,&lt;br /&gt;
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,&lt;br /&gt;
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR&lt;br /&gt;
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF&lt;br /&gt;
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING&lt;br /&gt;
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS&lt;br /&gt;
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&lt;br /&gt;
 *&lt;br /&gt;
 */&lt;br /&gt;
#include &amp;lt;QtTest&amp;gt;&lt;br /&gt;
#include &amp;lt;QDate&amp;gt;&lt;br /&gt;
#include &amp;quot;datetest.h&amp;quot;&lt;br /&gt;
void DateTest::testAddDay()&lt;br /&gt;
{&lt;br /&gt;
  QDate date( 1979, 5, 16 );&lt;br /&gt;
  QCOMPARE( date.year(), 1979 );&lt;br /&gt;
  QCOMPARE( date.month(), 5 );&lt;br /&gt;
  QCOMPARE( date.day(), 16 );&lt;br /&gt;
  &lt;br /&gt;
  QDate next = date.addDays( 1 );&lt;br /&gt;
  QCOMPARE( next.year(), 1979 );&lt;br /&gt;
  QCOMPARE( next.month(), 5 );&lt;br /&gt;
  QCOMPARE( next.day(), 17 );&lt;br /&gt;
  &lt;br /&gt;
  next = date.addDays( 20 );&lt;br /&gt;
  QCOMPARE( next.year(), 1979 );&lt;br /&gt;
  QCOMPARE( next.month(), 6 );&lt;br /&gt;
  QCOMPARE( next.day(), 5 );&lt;br /&gt;
  next = date.addDays( 366 );&lt;br /&gt;
  QCOMPARE( next.year(), 1980 );&lt;br /&gt;
  QCOMPARE( next.month(), 5 );&lt;br /&gt;
  QCOMPARE( next.day(), 16 );&lt;br /&gt;
}&lt;br /&gt;
void DateTest::testAddMonth()&lt;br /&gt;
{&lt;br /&gt;
  QDate date( 1973, 8, 16 );&lt;br /&gt;
  QCOMPARE( date.year(), 1973 );&lt;br /&gt;
  QCOMPARE( date.month(), 8 );&lt;br /&gt;
  QCOMPARE( date.day(), 16 );&lt;br /&gt;
  &lt;br /&gt;
  QDate next = date.addMonths( 1 );&lt;br /&gt;
  QCOMPARE( next.year(), 1973 );&lt;br /&gt;
  QCOMPARE( next.month(), 9 );&lt;br /&gt;
  QCOMPARE( next.day(), 16 );&lt;br /&gt;
  &lt;br /&gt;
  next = date.addMonths( 12 );&lt;br /&gt;
  QCOMPARE( next.year(), 1974 );&lt;br /&gt;
  QCOMPARE( next.month(), 8 );&lt;br /&gt;
  QCOMPARE( next.day(), 16 );&lt;br /&gt;
}&lt;br /&gt;
void DateTest::testAddYear()&lt;br /&gt;
{&lt;br /&gt;
  QDate date( 1979, 12, 31 );&lt;br /&gt;
  QCOMPARE( date.year(), 1979 );&lt;br /&gt;
  QCOMPARE( date.month(), 12 );&lt;br /&gt;
  QCOMPARE( date.day(), 31 );&lt;br /&gt;
  &lt;br /&gt;
  QDate next = date.addYears( 28 );&lt;br /&gt;
  QCOMPARE( next.year(), 2007 );&lt;br /&gt;
  QCOMPARE( next.month(), 12 );&lt;br /&gt;
  QCOMPARE( next.day(), 31 );&lt;br /&gt;
}&lt;br /&gt;
void DateTest::testValid()&lt;br /&gt;
{&lt;br /&gt;
  QDate date;&lt;br /&gt;
  &lt;br /&gt;
  date = QDate();&lt;br /&gt;
  QVERIFY( !date.isValid() );&lt;br /&gt;
  &lt;br /&gt;
  date = QDate( 1979, 5, 16 );&lt;br /&gt;
  QVERIFY( date.isValid() );&lt;br /&gt;
  date = QDate( 1980, 2, 29 );&lt;br /&gt;
  QVERIFY( date.isValid() );&lt;br /&gt;
  &lt;br /&gt;
  date = QDate( 1979, 2, 29 );&lt;br /&gt;
  QVERIFY( !date.isValid() );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Foundations of Qt Development\Chapter16\classtest\datetest.h&lt;br /&gt;
/*&lt;br /&gt;
 * Copyright (c) 2006-2007, Johan Thelin&lt;br /&gt;
 * &lt;br /&gt;
 * All rights reserved.&lt;br /&gt;
 * &lt;br /&gt;
 * Redistribution and use in source and binary forms, with or without modification, &lt;br /&gt;
 * are permitted provided that the following conditions are met:&lt;br /&gt;
 * &lt;br /&gt;
 *     * Redistributions of source code must retain the above copyright notice, &lt;br /&gt;
 *       this list of conditions and the following disclaimer.&lt;br /&gt;
 *     * Redistributions in binary form must reproduce the above copyright notice,  &lt;br /&gt;
 *       this list of conditions and the following disclaimer in the documentation &lt;br /&gt;
 *       and/or other materials provided with the distribution.&lt;br /&gt;
 *     * Neither the name of APress nor the names of its contributors &lt;br /&gt;
 *       may be used to endorse or promote products derived from this software &lt;br /&gt;
 *       without specific prior written permission.&lt;br /&gt;
 * &lt;br /&gt;
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS&lt;br /&gt;
 * &amp;quot;AS IS&amp;quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT&lt;br /&gt;
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR&lt;br /&gt;
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR&lt;br /&gt;
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,&lt;br /&gt;
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,&lt;br /&gt;
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR&lt;br /&gt;
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF&lt;br /&gt;
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING&lt;br /&gt;
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS&lt;br /&gt;
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&lt;br /&gt;
 *&lt;br /&gt;
 */&lt;br /&gt;
#ifndef DATETEST_H&lt;br /&gt;
#define DATETEST_H&lt;br /&gt;
#include &amp;lt;QObject&amp;gt;&lt;br /&gt;
class DateTest : public QObject&lt;br /&gt;
{&lt;br /&gt;
  Q_OBJECT&lt;br /&gt;
  &lt;br /&gt;
private slots:&lt;br /&gt;
  void testAddDay();&lt;br /&gt;
  void testAddMonth();&lt;br /&gt;
  void testAddYear();&lt;br /&gt;
  void testValid();&lt;br /&gt;
};&lt;br /&gt;
#endif // DATETEST_H&lt;br /&gt;
&lt;br /&gt;
Foundations of Qt Development\Chapter16\classtest\main.cpp&lt;br /&gt;
/*&lt;br /&gt;
 * Copyright (c) 2006-2007, Johan Thelin&lt;br /&gt;
 * &lt;br /&gt;
 * All rights reserved.&lt;br /&gt;
 * &lt;br /&gt;
 * Redistribution and use in source and binary forms, with or without modification, &lt;br /&gt;
 * are permitted provided that the following conditions are met:&lt;br /&gt;
 * &lt;br /&gt;
 *     * Redistributions of source code must retain the above copyright notice, &lt;br /&gt;
 *       this list of conditions and the following disclaimer.&lt;br /&gt;
 *     * Redistributions in binary form must reproduce the above copyright notice,  &lt;br /&gt;
 *       this list of conditions and the following disclaimer in the documentation &lt;br /&gt;
 *       and/or other materials provided with the distribution.&lt;br /&gt;
 *     * Neither the name of APress nor the names of its contributors &lt;br /&gt;
 *       may be used to endorse or promote products derived from this software &lt;br /&gt;
 *       without specific prior written permission.&lt;br /&gt;
 * &lt;br /&gt;
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS&lt;br /&gt;
 * &amp;quot;AS IS&amp;quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT&lt;br /&gt;
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR&lt;br /&gt;
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR&lt;br /&gt;
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,&lt;br /&gt;
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,&lt;br /&gt;
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR&lt;br /&gt;
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF&lt;br /&gt;
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING&lt;br /&gt;
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS&lt;br /&gt;
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&lt;br /&gt;
 *&lt;br /&gt;
 */&lt;br /&gt;
#include &amp;lt;QtTest&amp;gt;&lt;br /&gt;
#include &amp;quot;datetest.h&amp;quot;&lt;br /&gt;
QTEST_MAIN( DateTest )&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>