1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /*
3  * Copyright © 2012 – 2017 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 #if !defined (__GOA_BACKEND_INSIDE_GOA_BACKEND_H__) && !defined (GOA_BACKEND_COMPILATION)
20 #error "Only <goabackend/goabackend.h> can be included directly."
21 #endif
22 
23 #ifndef __GOA_OWNCLOUD_PROVIDER_H__
24 #define __GOA_OWNCLOUD_PROVIDER_H__
25 
26 #include <glib-object.h>
27 
28 #include "goaprovider-priv.h"
29 
30 G_BEGIN_DECLS
31 
32 #define GOA_TYPE_OWNCLOUD_PROVIDER (goa_owncloud_provider_get_type ())
33 G_DECLARE_FINAL_TYPE (GoaOwncloudProvider, goa_owncloud_provider, GOA, OWNCLOUD_PROVIDER, GoaProvider);
34 
35 G_END_DECLS
36 
37 #endif /* __GOA_OWNCLOUD_PROVIDER_H__ */
38