blob: 549ad63820d6333ac1465fc9cbadc6878b2e8512 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "imageprovider.h"
using namespace ScxmlEditor::PluginInterface;
ImageProvider::ImageProvider(QObject *parent)
: QObject(parent)
{
}
|