File: columnproxymodeltest.h

package info (click to toggle)
kdeclarative 5.116.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 24,072 kB
  • sloc: cpp: 8,161; sh: 21; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
    SPDX-FileCopyrightText: 2012 Aleix Pol Gonzalez <aleixpol@kde.org>

    SPDX-License-Identifier: LGPL-2.1-or-later
*/

#ifndef COLUMNPROXYMODELTEST_H
#define COLUMNPROXYMODELTEST_H

#include <QObject>

class ColumnProxyModelTest : public QObject
{
    Q_OBJECT

private Q_SLOTS:
    void testInit();
    void testSet();
};

#endif