BluezQt

declarativeinput.cpp
1/*
2 * BluezQt - Asynchronous BlueZ wrapper library
3 *
4 * SPDX-FileCopyrightText: 2015 David Rosca <nowrep@gmail.com>
5 *
6 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7 */
8
9#include "declarativeinput.h"
10
11DeclarativeInput::DeclarativeInput(const BluezQt::InputPtr &input, QObject *parent)
12 : QObject(parent)
13 , m_input(input)
14{
15 connect(m_input.data(), &BluezQt::Input::reconnectModeChanged, this, &DeclarativeInput::reconnectModeChanged);
16}
17
18BluezQt::Input::ReconnectMode DeclarativeInput::reconnectMode() const
19{
20 return m_input->reconnectMode();
21}
22
23#include "moc_declarativeinput.cpp"
ReconnectMode
Reconnect mode.
Definition input.h:35
void reconnectModeChanged(ReconnectMode mode)
Indicates that input's reconnect mode have changed.
QFuture< ArgsType< Signal > > connect(Sender *sender, Signal signal)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:51 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.