File indexing completed on 2024-12-22 04:28:16
0001 /* 0002 SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "customemojiiconmanager.h" 0008 0009 using namespace TextEmoticonsCore; 0010 CustomEmojiIconManager::CustomEmojiIconManager(QObject *parent) 0011 : QObject(parent) 0012 { 0013 } 0014 0015 CustomEmojiIconManager::~CustomEmojiIconManager() 0016 { 0017 } 0018 0019 QIcon CustomEmojiIconManager::generateIcon(const QString &customIdentifier) 0020 { 0021 Q_UNUSED(customIdentifier) 0022 return {}; 0023 } 0024 0025 QString CustomEmojiIconManager::fileName(const QString &customIdentifier) 0026 { 0027 Q_UNUSED(customIdentifier) 0028 return {}; 0029 } 0030 0031 #include "moc_customemojiiconmanager.cpp"