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 : : #include "valent-device.h"
7 : :
8 : : G_BEGIN_DECLS
9 : :
10 : : #define VALENT_TYPE_DEVICE_IMPL (valent_device_impl_get_type())
11 : :
12 [ + - + - : 1 : G_DECLARE_FINAL_TYPE (ValentDeviceImpl, valent_device_impl, VALENT, DEVICE_IMPL, GDBusInterfaceSkeleton)
- + ]
13 : :
14 : : GDBusInterfaceSkeleton * valent_device_impl_new (ValentDevice *device);
15 : :
16 : : G_END_DECLS
17 : :
|