File indexing completed on 2024-05-19 15:10:52

0001 /*
0002     SPDX-FileCopyrightText: 2014 Daniel Vrátil <dvratil@redhat.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef KEMOTICONSINTEGRATIONPLUGIN_H
0008 #define KEMOTICONSINTEGRATIONPLUGIN_H
0009 
0010 #include <QObject>
0011 
0012 #include "ktexttohtml.h"
0013 
0014 class KEmoticonsIntegrationPlugin : public QObject
0015 {
0016     Q_PLUGIN_METADATA(IID "org.kde.KEmoticonsIntegrationPlugin")
0017     Q_OBJECT
0018 
0019 public:
0020     KEmoticonsIntegrationPlugin();
0021 
0022 private:
0023     KTextToHTMLEmoticons mTextToHTMLEmoticons;
0024 };
0025 
0026 #endif // KEMOTICONSINTEGRATIONPLUGIN_H