aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/effectmakernew/effectmakerplugin.h
blob: 116115629e5750aaeb4f80f06bf23b91037860f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <extensionsystem/iplugin.h>
#include <utils/process.h>

namespace Core {
class ActionContainer;
class ExternalTool;
}

namespace EffectMaker {

class EffectMakerPlugin : public ExtensionSystem::IPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "EffectMakerNew.json")

public:
    EffectMakerPlugin() {}
    ~EffectMakerPlugin() override {}

    bool delayedInitialize() override;

private:
    bool m_delayedInitialized = false;
};

} // namespace EffectMaker