Sonnet

sonnetquickplugin.cpp
1// SPDX-FileCopyrightText: 2021 Carl Schwan <carlschwan@kde.org>
2// SPDX-License-Identifier: LGPL-2.1-or-later
3
4#include "sonnetquickplugin.h"
5#include "settings.h"
6#include "spellcheckhighlighter.h"
7#include <QQmlEngine>
8
9void SonnetQuickPlugin::registerTypes(const char *uri)
10{
11 qmlRegisterType<SpellcheckHighlighter>(uri, 1, 0, "SpellcheckHighlighter");
12 qmlRegisterType<Sonnet::Settings>(uri, 1, 0, "Settings");
13}
14
15#include "moc_sonnetquickplugin.cpp"
T qobject_cast(QObject *object)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:15:10 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.