File indexing completed on 2024-12-15 04:51:47
0001 /* 0002 SPDX-FileCopyrightText: 2013-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 #include "showfoldernotesattribute.h" 0007 0008 #include <QByteArray> 0009 using namespace NoteShared; 0010 ShowFolderNotesAttribute::ShowFolderNotesAttribute() = default; 0011 0012 ShowFolderNotesAttribute::~ShowFolderNotesAttribute() = default; 0013 0014 ShowFolderNotesAttribute *ShowFolderNotesAttribute::clone() const 0015 { 0016 return new ShowFolderNotesAttribute(); 0017 } 0018 0019 QByteArray ShowFolderNotesAttribute::type() const 0020 { 0021 static const QByteArray sType("showfoldernotesattribute"); 0022 return sType; 0023 } 0024 0025 QByteArray ShowFolderNotesAttribute::serialized() const 0026 { 0027 return QByteArrayLiteral("-"); 0028 } 0029 0030 void ShowFolderNotesAttribute::deserialize(const QByteArray &data) 0031 { 0032 Q_UNUSED(data) 0033 }