1/*
2 Copyright (c) 2006 - 2007 Volker Krause <vkrause@kde.org>
3
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
8
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
18*/
19
20#ifndef AKONADI_COLLECTIONSELECTJOB_P_H
21#define AKONADI_COLLECTIONSELECTJOB_P_H
22
23#include <akonadi/collection.h>
24#include <akonadi/job.h>
25
26namespace Akonadi {
27
28class CollectionSelectJobPrivate;
29
30/**
31 * @internal
32 * Selects a specific collection. See RFC 3501 for select semantics.
33 */
34class AKONADI_DEPRECATED_EXPORT CollectionSelectJob : public Job
35{
36 Q_OBJECT
37public:
38 /**
39 Creates a new collection select job. When providing a collection with just a remote
40 identifier, make sure to specify in which resource to search for that using
41 Akonadi::ResourceSelectJob.
42 @param collection The collection to select.
43 @param parent The parent object.
44 */
45 explicit CollectionSelectJob(const Collection &collection, QObject *parent = 0);
46
47 /**
48 Destroys this job.
49 */
50 virtual ~CollectionSelectJob();
51
52protected:
53 void doStart();
54
55private:
56 Q_DECLARE_PRIVATE(CollectionSelectJob)
57};
58
59}
60
61#endif
62