File: kcursorsavertest.h

package info (click to toggle)
kguiaddons 5.103.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 868 kB
  • sloc: cpp: 4,913; xml: 358; sh: 13; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 435 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
    SPDX-License-Identifier: LGPL-2.0-or-later
    SPDX-FileCopyrightText: 2020 Laurent Montel <montel@kde.org>
*/

#ifndef KCURSORSAVERTEST_H
#define KCURSORSAVERTEST_H

#include <QObject>

class KCursorSaverTest : public QObject
{
    Q_OBJECT
public:
    explicit KCursorSaverTest(QObject *parent = nullptr);
    ~KCursorSaverTest() override = default;
private Q_SLOTS:
    void ignoreWarning();
};

#endif // KCURSORSAVERTEST_H