mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-23 07:35:54 +00:00
19 lines
365 B
C++
19 lines
365 B
C++
/*
|
|
SPDX-FileCopyrightText: 2014 Martin Yrjölä <martin.yrjola@gmail.com>
|
|
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QQmlExtensionPlugin>
|
|
|
|
class KeyboardLayoutPlugin : public QQmlExtensionPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
|
|
|
|
public:
|
|
void registerTypes(const char *uri) override;
|
|
};
|