diff options
Diffstat (limited to 'examples/caldavresource/caldavresource.h')
-rw-r--r-- | examples/caldavresource/caldavresource.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/examples/caldavresource/caldavresource.h b/examples/caldavresource/caldavresource.h new file mode 100644 index 0000000..5822495 --- /dev/null +++ b/examples/caldavresource/caldavresource.h | |||
@@ -0,0 +1,46 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2018 Christian Mollekopf <chrigi_1@fastmail.fm> | ||
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 | ||
16 | * Free Software Foundation, Inc., | ||
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | */ | ||
19 | |||
20 | #pragma once | ||
21 | |||
22 | #include "common/genericresource.h" | ||
23 | |||
24 | /** | ||
25 | * A CalDAV resource. | ||
26 | */ | ||
27 | class CalDavResource : public Sink::GenericResource | ||
28 | { | ||
29 | public: | ||
30 | CalDavResource(const Sink::ResourceContext &); | ||
31 | }; | ||
32 | |||
33 | class CalDavResourceFactory : public Sink::ResourceFactory | ||
34 | { | ||
35 | Q_OBJECT | ||
36 | Q_PLUGIN_METADATA(IID "sink.caldav") | ||
37 | Q_INTERFACES(Sink::ResourceFactory) | ||
38 | |||
39 | public: | ||
40 | CalDavResourceFactory(QObject *parent = nullptr); | ||
41 | |||
42 | Sink::Resource *createResource(const Sink::ResourceContext &context) Q_DECL_OVERRIDE; | ||
43 | void registerFacades(const QByteArray &resourceName, Sink::FacadeFactory &factory) Q_DECL_OVERRIDE; | ||
44 | void registerAdaptorFactories(const QByteArray &resourceName, Sink::AdaptorFactoryRegistry ®istry) Q_DECL_OVERRIDE; | ||
45 | void removeDataFromDisk(const QByteArray &instanceIdentifier) Q_DECL_OVERRIDE; | ||
46 | }; | ||