KCal Library
person.h
Go to the documentation of this file.
00001 /* 00002 This file is part of the kcal library. 00003 00004 Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org> 00005 Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com> 00006 00007 This library is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU Library General Public 00009 License as published by the Free Software Foundation; either 00010 version 2 of the License, or (at your option) any later version. 00011 00012 This library is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 Library General Public License for more details. 00016 00017 You should have received a copy of the GNU Library General Public License 00018 along with this library; see the file COPYING.LIB. If not, write to 00019 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00020 Boston, MA 02110-1301, USA. 00021 */ 00031 #ifndef KCAL_PERSON_H 00032 #define KCAL_PERSON_H 00033 00034 #include <QtCore/QString> 00035 #include <QtCore/QHash> 00036 00037 #include "kcal_export.h" 00038 00039 namespace KCal { 00040 00048 class KCAL_EXPORT_DEPRECATED Person 00049 { 00050 public: 00054 Person(); 00055 00062 static Person fromFullName( const QString &fullName ); 00063 00072 KDE_CONSTRUCTOR_DEPRECATED explicit Person( const QString &fullName ); 00073 00080 Person( const QString &name, const QString &email ); 00081 00087 Person( const Person &person ); 00088 00092 ~Person(); 00093 00097 bool isEmpty() const; 00098 00102 QString fullName( ) const; 00103 00111 void setName( const QString &name ); 00112 00118 QString name() const; 00119 00127 void setEmail( const QString &email ); 00128 00134 QString email() const; 00135 00141 //KDE5: make const for all 00142 #if defined(Q_CC_MSVC) 00143 bool operator==( const Person &person ) const; 00144 #else 00145 bool operator==( const Person &person ); //krazy:exclude=operators 00146 #endif 00147 00152 Person &operator=( const Person &person ); 00153 00154 private: 00155 //@cond PRIVATE 00156 class Private; 00157 Private *const d; 00158 //@endcond 00159 }; 00160 00161 } 00162 00163 /* 00164 Return a hash value for a Person argument. 00165 @param key is a Person. 00166 @since 4.4 00167 */ 00168 inline uint qHash( const KCal::Person &key ) //krazy:exclude=inline 00169 { 00170 return qHash( key.fullName() ); 00171 } 00172 00173 #endif
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Apr 30 2012 21:49:43 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Apr 30 2012 21:49:43 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.