File: codectest.h

package info (click to toggle)
kcodecs 5.116.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,796 kB
  • sloc: cpp: 9,641; sh: 14; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
    SPDX-FileCopyrightText: 2010 Thomas McGuire <mcguire@kde.org>

    SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef CODECTEST_H
#define CODECTEST_H

#include <QObject>

class CodecTest : public QObject
{
    Q_OBJECT
private Q_SLOTS:
    void testCodecs();
    void testCodecs_data();
};

#endif