summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_plugin_deployment/mylib/mylib.cpp
blob: ba4213b5d19babd3330cf2c3e63db3b2261a20bd (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "mylib.h"
#include <QtGui/QImageReader>

QList<QByteArray> getSupportedImageFormats()
{
    return QImageReader::supportedImageFormats();
}