KIMAP2

idjob.h
1/*
2 Copyright (c) 2015 Christian Mollekopf <mollekopf@kolabsys.com>
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 KIMAP2_IDJOB_H
21#define KIMAP2_IDJOB_H
22
23#include "kimap2_export.h"
24
25#include "job.h"
26
27namespace KIMAP2 {
28
29class Session;
30struct Message;
31class IdJobPrivate;
32
33/**
34 * Reports client id.
35 *
36 * This job can be run in any open session.
37 */
38class KIMAP2_EXPORT IdJob : public Job
39{
40 Q_OBJECT
41 Q_DECLARE_PRIVATE(IdJob)
42
43 friend class SessionPrivate;
44
45public:
46 IdJob( Session *session);
47 virtual ~IdJob();
48
49 void setField(const QByteArray &name, const QByteArray &field);
50
51protected:
52 void doStart() Q_DECL_OVERRIDE;
53 void handleResponse(const Message &response) Q_DECL_OVERRIDE;
54};
55
56}
57
58#endif
Reports client id.
Definition idjob.h:39
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:21:18 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.