kdeconnect-kde/core/pairstate.h
Albert Vaca Cintora 064ddfa3fe Refactor PairingHandler
We now have a single PairingHandler for all types of links.

The implementation now is more aligned with the one for Android.
2023-06-02 16:38:52 +00:00

18 lines
308 B
C

/**
* SPDX-FileCopyrightText: 2023 Albert Vaca <albertvaka@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#ifndef PAIR_STATE_H
#define PAIR_STATE_H
enum class PairState {
NotPaired,
Requested,
RequestedByPeer,
Paired,
};
#endif