GCC Code Coverage Report


Directory: ./
File: panels/online-accounts/cc-online-account-provider-row.h
Date: 2024-05-03 09:46:52
Exec Total Coverage
Lines: 0 1 0.0%
Functions: 0 2 0.0%
Branches: 0 6 0.0%

Line Branch Exec Source
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /*
3 * Copyright 2020 Canonical Ltd.
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 #pragma once
20
21 #include <gtk/gtk.h>
22 #include <adwaita.h>
23
24 #define GOA_API_IS_SUBJECT_TO_CHANGE
25 #define GOA_BACKEND_API_IS_SUBJECT_TO_CHANGE
26 #include <goabackend/goabackend.h>
27
28 G_BEGIN_DECLS
29
30 #define CC_TYPE_ONLINE_ACCOUNT_PROVIDER_ROW (cc_online_account_provider_row_get_type ())
31
32 G_DECLARE_FINAL_TYPE (CcOnlineAccountProviderRow, cc_online_account_provider_row, CC, ONLINE_ACCOUNT_PROVIDER_ROW, AdwActionRow)
33
34 CcOnlineAccountProviderRow *cc_online_account_provider_row_new (GoaProvider *provider);
35
36 GoaProvider *cc_online_account_provider_row_get_provider (CcOnlineAccountProviderRow *row);
37
38 G_END_DECLS
39