plasma-framework/autotests/sortfiltermodeltest.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
456 B
C
Raw Normal View History

2012-08-28 18:08:33 +02:00
/*
SPDX-FileCopyrightText: 2012 Aurélien Gâteau <agateau@kde.org>
SPDX-License-Identifier: LGPL-2.1-or-later
*/
2012-08-28 18:08:33 +02:00
#ifndef SORTFILTERMODELTEST_H
#define SORTFILTERMODELTEST_H
// Qt
#include <QObject>
class SortFilterModelTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void setFilterRegExp();
void setModel();
void setEmptyModel();
void mapRowToSource();
void mapRowFromSource();
2012-08-28 18:08:33 +02:00
};
#endif /* SORTFILTERMODELTEST_H */