KCalCore Library
freebusyperiod.h
Go to the documentation of this file.
00001 /* 00002 This file is part of the kcalcore library. 00003 00004 Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org> 00005 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Library General Public 00008 License as published by the Free Software Foundation; either 00009 version 2 of the License, or (at your option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Library General Public License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to 00018 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 Boston, MA 02110-1301, USA. 00020 */ 00032 #ifndef KCALCORE_FREEBUSYPERIOD_H 00033 #define KCALCORE_FREEBUSYPERIOD_H 00034 00035 #include "kcalcore_export.h" 00036 #include "period.h" 00037 00038 #include <QtCore/QMetaType> 00039 00040 namespace KCalCore { 00041 00046 class KCALCORE_EXPORT FreeBusyPeriod : public Period 00047 { 00048 public: 00052 typedef QVector<FreeBusyPeriod> List; 00053 00057 FreeBusyPeriod(); 00058 00065 FreeBusyPeriod( const KDateTime &start, const KDateTime &end ); 00066 00073 FreeBusyPeriod( const KDateTime &start, const Duration &duration ); 00074 00081 FreeBusyPeriod( const FreeBusyPeriod &period ); 00082 00089 FreeBusyPeriod( const Period &period ); 00090 00094 ~FreeBusyPeriod(); 00095 00101 FreeBusyPeriod &operator=( const FreeBusyPeriod &other ); 00102 00108 void setSummary( const QString &summary ); 00109 00114 QString summary() const; 00115 00121 void setLocation( const QString &location ); 00122 00127 QString location() const; 00128 00129 private: 00130 //@cond PRIVATE 00131 class Private; 00132 Private *const d; 00133 //@endcond 00134 00135 friend KCALCORE_EXPORT QDataStream &operator<<( QDataStream &stream, 00136 const KCalCore::FreeBusyPeriod &period ); 00137 friend KCALCORE_EXPORT QDataStream &operator>>( QDataStream &stream, 00138 KCalCore::FreeBusyPeriod &period ); 00139 }; 00140 00142 KCALCORE_EXPORT QDataStream &operator<<( QDataStream &stream, 00143 const KCalCore::FreeBusyPeriod &period ); 00144 00146 KCALCORE_EXPORT QDataStream &operator>>( QDataStream &stream, KCalCore::FreeBusyPeriod &period ); 00147 } 00148 00149 //@cond PRIVATE 00150 Q_DECLARE_METATYPE( KCalCore::FreeBusyPeriod ) 00151 //@endcond 00152 00153 #endif
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Aug 27 2012 22:07:48 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:07:48 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.