akonadi
collectionattributessynchronizationjob.h
00001 /* 00002 * Copyright (c) 2009 Volker Krause <vkrause@kde.org> 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2.1 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library. If not, see <http://www.gnu.org/licenses/>. 00016 */ 00017 00018 #ifndef AKONADI_COLLECTIONATTRIBUTESSYNCHRONIZATIONJOB_H 00019 #define AKONADI_COLLECTIONATTRIBUTESSYNCHRONIZATIONJOB_H 00020 00021 #include "akonadi_export.h" 00022 00023 #include <kjob.h> 00024 00025 namespace Akonadi { 00026 00027 class Collection; 00028 class CollectionAttributesSynchronizationJobPrivate; 00029 00054 class AKONADI_EXPORT CollectionAttributesSynchronizationJob : public KJob 00055 { 00056 Q_OBJECT 00057 00058 public: 00064 explicit CollectionAttributesSynchronizationJob( const Collection &collection, QObject *parent = 0 ); 00065 00069 ~CollectionAttributesSynchronizationJob(); 00070 00071 /* reimpl */ 00072 void start(); 00073 00074 private: 00075 //@cond PRIVATE 00076 CollectionAttributesSynchronizationJobPrivate* const d; 00077 friend class CollectionAttributesSynchronizationJobPrivate; 00078 00079 Q_PRIVATE_SLOT( d, void slotSynchronized(qlonglong) ) 00080 Q_PRIVATE_SLOT( d, void slotTimeout() ) 00081 //@endcond 00082 }; 00083 00084 } 00085 00086 #endif
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:18:30 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:18:30 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.