GCC Code Coverage Report


Directory: src/
File: src/message/msg-message.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-2023 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_MESSAGE (msg_message_get_type ())
30
31
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 2 times.
20 G_DECLARE_FINAL_TYPE (MsgMessage, msg_message, MSG, MESSAGE, GObject);
32
33 MsgMessage *
34 msg_message_new (void);
35
36 MsgMessage *
37 msg_message_new_from_json (JsonObject *json_object,
38 GError **error);
39
40 const char *
41 msg_message_get_subject (MsgMessage *self);
42
43 gboolean
44 msg_message_set_subject (MsgMessage *self,
45 const char *subject);
46
47 const char *
48 msg_message_get_body_preview (MsgMessage *self);
49
50 gboolean
51 msg_message_set_body (MsgMessage *self,
52 const char *body);
53
54 const char *
55 msg_message_get_id (MsgMessage *self);
56
57 G_END_DECLS
58