GCC Code Coverage Report


Directory: src/
File: src/contact/msg-contact.h
Date: 2024-05-18 00:53:33
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 4 4 100.0%
Branches: 2 2 100.0%

Line Branch Exec Source
1 /* Copyright 2022-2024 Jan-Michael Brummer <jan-michael.brummer1@volkswagen.de>
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU Lesser General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17 #pragma once
18
19 #if !defined(_MSG_INSIDE) && !defined(MSG_COMPILATION)
20 #error "Only <msg.h> can be included directly."
21 #endif
22
23 #include <glib-object.h>
24 #include <gio/gio.h>
25 #include <json-glib/json-glib.h>
26
27 G_BEGIN_DECLS
28
29 #define MSG_TYPE_CONTACT (msg_contact_get_type ())
30
31
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
15 G_DECLARE_FINAL_TYPE (MsgContact, msg_contact, MSG, CONTACT, GObject);
32
33 MsgContact *
34 msg_contact_new (void);
35
36 MsgContact *
37 msg_contact_new_from_json (JsonObject *json_object,
38 GError **error);
39
40 const char *
41 msg_contact_get_name (MsgContact *self);
42
43 void
44 msg_contact_set_given_name (MsgContact *self,
45 const char *given_name);
46
47 const char *
48 msg_contact_get_given_name (MsgContact *self);
49
50 void
51 msg_contact_set_surname (MsgContact *self,
52 const char *surname);
53
54 const char *
55 msg_contact_get_surname (MsgContact *self);
56
57 const char *
58 msg_contact_get_id (MsgContact *self);
59
60 G_END_DECLS
61