File: klipperutils.h

package info (click to toggle)
plasma-pass 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 504 kB
  • sloc: cpp: 1,316; xml: 28; makefile: 2; sh: 1
file content (20 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-FileCopyrightText: 2023 Daniel Vrátil <dvratil@kde.org>
//
// SPDX-License-Identifier: LGPL-2.1-or-later

#ifndef KLIPPERUTILS_H_
#define KLIPPERUTILS_H_

namespace PlasmaPass
{
namespace KlipperUtils
{

enum class State { Unknown, Missing, Available, SupportsPasswordManagerHint };

State getState();

} // namespace KlipperUtils
} // namespace PlasmaPass

#endif // KLIPPERUTILS_H_