File indexing completed on 2024-04-21 16:17:32

0001 /*
0002  *  SPDX-FileCopyrightText: 2014 Daniel Vrátil <dvratil@redhat.com>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.1-or-later
0005  */
0006 
0007 #include "abstractbackend.h"
0008 
0009 void KScreen::AbstractBackend::init(const QVariantMap &arguments)
0010 {
0011     Q_UNUSED(arguments);
0012 }
0013 
0014 QByteArray KScreen::AbstractBackend::edid(int outputId) const
0015 {
0016     Q_UNUSED(outputId);
0017     return QByteArray();
0018 }