cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
23 lines
420 B
C++
23 lines
420 B
C++
/*
|
|
This file is part of the KDE project
|
|
SPDX-FileCopyrightText: 2013 Frank Reininghaus <frank78ac@googlemail.com>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KFILEITEMACTIONSTEST_H
|
|
#define KFILEITEMACTIONSTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class KFileItemActionsTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
void testSetParentWidget();
|
|
void testTopLevelServiceMenuActions();
|
|
};
|
|
|
|
#endif
|