File: kcursorsavertest.h

package info (click to toggle)
kguiaddons 5.78.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 628 kB
  • sloc: cpp: 3,380; xml: 121; python: 16; sh: 13; makefile: 11
file content (22 lines) | stat: -rw-r--r-- 427 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
    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() = default;
private Q_SLOTS:
    void ignoreWarning();
};

#endif // KCURSORSAVERTEST_H