blob: 5fea9e7326110f782606c38db12ebbc52e904c9f (
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-only WITH Qt-GPL-exception-1.0
#include "imageprovider.h"
using namespace ScxmlEditor::PluginInterface;
ImageProvider::ImageProvider(QObject *parent)
: QObject(parent)
{
}
|