File indexing completed on 2025-03-09 04:47:13
0001 /* 0002 SPDX-FileCopyrightText: 2015-2016 Krzysztof Nowicki <krissn@op.pl> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "ewsfetchitemdetailjob.h" 0010 0011 class EwsFetchCalendarDetailJob : public EwsFetchItemDetailJob 0012 { 0013 Q_OBJECT 0014 public: 0015 EwsFetchCalendarDetailJob(EwsClient &client, QObject *parent, const Akonadi::Collection &collection); 0016 ~EwsFetchCalendarDetailJob() override; 0017 0018 protected: 0019 void processItems(const EwsGetItemRequest::Response::List &responses) override; 0020 private Q_SLOTS: 0021 void exceptionItemsFetched(KJob *job); 0022 };