KCal Library
journal.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 */ 00030 #ifndef KCAL_JOURNAL_H 00031 #define KCAL_JOURNAL_H 00032 00033 #include "incidence.h" 00034 #include <kpimutils/supertrait.h> 00035 #include <QtCore/QByteArray> 00036 00037 namespace KCal { 00038 00043 class KCAL_EXPORT_DEPRECATED Journal : public Incidence 00044 { 00045 public: 00049 typedef ListBase<Journal> List; 00050 00054 typedef boost::shared_ptr<Journal> Ptr; 00055 00059 typedef boost::shared_ptr<const Journal> ConstPtr; 00060 00064 Journal(); 00065 00069 ~Journal(); 00070 00075 QByteArray type() const; 00076 00081 //KDE5: QString typeStr() const; 00082 00087 Journal *clone(); 00088 00092 Journal &operator=( const Journal &other ); 00093 00099 bool operator==( const Journal &journal ) const; 00100 00101 private: 00106 bool accept( Visitor &v ) { return v.visit( this ); } 00107 00108 //@cond PRIVATE 00109 class Private; 00110 Private *const d; 00111 //@endcond 00112 }; 00113 00114 } 00115 00116 //@cond PRIVATE 00117 // super class trait specialization 00118 namespace KPIMUtils { 00119 template <> struct SuperClass<KCal::Journal> : public SuperClassTrait<KCal::Incidence>{}; 00120 } 00121 //@endcond 00122 00123 #endif