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-messages-adapter.h"
12 : :
13 : : G_BEGIN_DECLS
14 : :
15 : : /**
16 : : * VALENT_MESSAGES_GRAPH:
17 : : *
18 : : * The SPARQL graph name for messages in Valent.
19 : : *
20 : : * Since: 1.0
21 : : */
22 : : #define VALENT_MESSAGES_GRAPH "valent:messages"
23 : :
24 : :
25 : : #define VALENT_TYPE_MESSAGES (valent_messages_get_type ())
26 : :
27 : : VALENT_AVAILABLE_IN_1_0
28 [ + - ]: 1 : G_DECLARE_FINAL_TYPE (ValentMessages, valent_messages, VALENT, MESSAGES, ValentComponent)
29 : :
30 : : VALENT_AVAILABLE_IN_1_0
31 : : ValentMessages * valent_messages_get_default (void);
32 : :
33 : : G_END_DECLS
34 : :
|