Fluid
Loading...
Searching...
No Matches
controlsplugin.h
Go to the documentation of this file.
1/*
2 * This file is part of Fluid.
3 *
4 * Copyright (C) 2018 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
5 *
6 * $BEGIN_LICENSE:MPL2$
7 *
8 * This Source Code Form is subject to the terms of the Mozilla Public
9 * License, v. 2.0. If a copy of the MPL was not distributed with this
10 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 *
12 * $END_LICENSE$
13 */
14
15#pragma once
16
17#include <QtQml/QQmlExtensionPlugin>
18
19class FluidPlugin : public QQmlExtensionPlugin
20{
21 Q_OBJECT
22 Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
23public:
24 void initializeEngine(QQmlEngine *engine, const char *uri) override;
25 void registerTypes(const char *uri) override;
26};
Definition controlsplugin.h:20
void initializeEngine(QQmlEngine *engine, const char *uri) override
Definition controlsplugin.cpp:18
void registerTypes(const char *uri) override
Definition controlsplugin.cpp:29