Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #pragma once
5 : :
6 : : #if !defined (VALENT_INSIDE) && !defined (VALENT_COMPILATION)
7 : : # error "Only <valent.h> can be included directly."
8 : : #endif
9 : :
10 : : #include "../core/valent-component.h"
11 : : #include "valent-contacts-adapter.h"
12 : :
13 : :
14 : : G_BEGIN_DECLS
15 : :
16 : : /**
17 : : * VALENT_CONTACTS_GRAPH:
18 : : *
19 : : * The SPARQL graph name for contacts in Valent.
20 : : *
21 : : * Since: 1.0
22 : : */
23 : : #define VALENT_CONTACTS_GRAPH "valent:contacts"
24 : :
25 : : #define VALENT_TYPE_CONTACTS (valent_contacts_get_type ())
26 : :
27 : : VALENT_AVAILABLE_IN_1_0
28 [ + - + - : 47 : G_DECLARE_FINAL_TYPE (ValentContacts, valent_contacts, VALENT, CONTACTS, ValentComponent)
- + ]
29 : :
30 : : VALENT_AVAILABLE_IN_1_0
31 : : ValentContacts * valent_contacts_get_default (void);
32 : : VALENT_AVAILABLE_IN_1_0
33 : : void valent_contacts_export_adapter (ValentContacts *contacts,
34 : : ValentContactsAdapter *object);
35 : : VALENT_AVAILABLE_IN_1_0
36 : : void valent_contacts_unexport_adapter (ValentContacts *contacts,
37 : : ValentContactsAdapter *object);
38 : :
39 : : G_END_DECLS
40 : :
|