cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
22 lines
398 B
C++
22 lines
398 B
C++
/*
|
|
This file is part of the KDE frameworks
|
|
SPDX-FileCopyrightText: 2014 Aurélien Gâteau <agateau@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
#ifndef KCOLUMNRESIZERTEST_H
|
|
#define KCOLUMNRESIZERTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class KColumnResizerTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
void test_data();
|
|
void test();
|
|
};
|
|
|
|
#endif /* KCOLUMNRESIZERTEST_H */
|