KHolidays Library
holiday_p.h
00001 /* 00002 This file is part of the kholidays library. 00003 00004 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> 00005 Copyright (c) 2004 Allen Winter <winter@kde.org> 00006 Copyright (c) 2008 David Jarvie <djarvie@kde.org> 00007 Copyright 2010 John Layt <john@layt.net> 00008 00009 This library is free software; you can redistribute it and/or 00010 modify it under the terms of the GNU Library General Public 00011 License as published by the Free Software Foundation; either 00012 version 2 of the License, or (at your option) any later version. 00013 00014 This library is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 GNU Library General Public License for more details. 00018 00019 You should have received a copy of the GNU Library General Public License 00020 along with this library; see the file COPYING.LIB. If not, write to the 00021 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00022 Boston, MA 02110-1301, USA. 00023 */ 00024 00025 #ifndef KHOLIDAYS_HOLIDAY_P_H 00026 #define KHOLIDAYS_HOLIDAY_P_H 00027 00028 #include "holiday.h" 00029 00030 #include <QtCore/QDateTime> 00031 #include <QtCore/QFile> 00032 #include <QtCore/QSharedData> 00033 00034 namespace KHolidays { 00035 00036 class HolidayPrivate : public QSharedData 00037 { 00038 public: 00039 HolidayPrivate() 00040 { 00041 } 00042 00043 HolidayPrivate( const HolidayPrivate &other ) : QSharedData( other ) 00044 { 00045 mObservedDate = other.mObservedDate; 00046 mDuration = other.mDuration; 00047 mText = other.mText; 00048 mShortText = other.mShortText; 00049 mDayType = other.mDayType; 00050 } 00051 00052 QDate mObservedDate; 00053 int mDuration; 00054 QString mText; 00055 QString mShortText; 00056 Holiday::DayType mDayType; 00057 }; 00058 00059 } 00060 00061 #endif // KHOLIDAYS_HOLIDAY_P_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Aug 27 2012 22:08:09 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Aug 27 2012 22:08:09 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.