File: codectest.h

package info (click to toggle)
kf6-kcodecs 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 23,784 kB
  • sloc: cpp: 8,843; sh: 14; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 337 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
/*
    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();
    void testInvalidCodec();
};

#endif