File indexing completed on 2024-04-28 05:34:16

0001 // SPDX-FileCopyrightText: 2023 Daniel Vrátil <dvratil@kde.org>
0002 //
0003 // SPDX-License-Identifier: LGPL-2.1-or-later
0004 
0005 #ifndef KLIPPERUTILS_H_
0006 #define KLIPPERUTILS_H_
0007 
0008 namespace PlasmaPass
0009 {
0010 namespace KlipperUtils
0011 {
0012 
0013 enum class State { Unknown, Missing, Available, SupportsPasswordManagerHint };
0014 
0015 State getState();
0016 
0017 } // namespace KlipperUtils
0018 } // namespace PlasmaPass
0019 
0020 #endif // KLIPPERUTILS_H_