cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
21 lines
397 B
C++
21 lines
397 B
C++
/*
|
|
SPDX-FileCopyrightText: 2013 Martin Klapetek <mklapetek@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#ifndef KICONUTILSTEST_H
|
|
#define KICONUTILSTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class KIconUtilsTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private Q_SLOTS:
|
|
void addOverlayTest();
|
|
void addOverlaysTest();
|
|
};
|
|
|
|
#endif // KICONUTILSTEST_H
|