Libkdav2

groupdavprotocol.h
1/*
2 Copyright (c) 2009 Grégory Oestreicher <greg@kamago.net>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17*/
18
19#ifndef GROUPDAVPROTOCOL_H
20#define GROUPDAVPROTOCOL_H
21
22#include "common/davprotocolbase.h"
23
24class GroupdavProtocol : public KDAV2::DavProtocolBase
25{
26public:
27 GroupdavProtocol();
28 bool supportsPrincipals() const Q_DECL_OVERRIDE;
29 bool supportsCTags() const Q_DECL_OVERRIDE;
30 bool useReport() const Q_DECL_OVERRIDE;
31 bool useMultiget() const Q_DECL_OVERRIDE;
32 KDAV2::XMLQueryBuilder::Ptr collectionsQuery() const Q_DECL_OVERRIDE;
33 QString collectionsXQuery() const Q_DECL_OVERRIDE;
34 QVector<KDAV2::XMLQueryBuilder::Ptr> itemsQueries() const Q_DECL_OVERRIDE;
35
36 KDAV2::DavCollection::ContentTypes collectionContentTypes(const QDomElement &propstat) const Q_DECL_OVERRIDE;
37};
38
39#endif
Base class for various DAV groupware dialects.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:28 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.