File indexing completed on 2024-11-10 04:40:28

0001 /******************************************************************************
0002  *
0003  *  SPDX-FileCopyrightText: 2009 Szymon Stefanek <s.stefanek at gmail dot com>
0004  *
0005  *  SPDX-License-Identifier: LGPL-2.0-or-later
0006  *
0007  *****************************************************************************/
0008 
0009 #include "entityhiddenattribute.h"
0010 
0011 #include <QByteArray>
0012 
0013 using namespace Akonadi;
0014 
0015 class Akonadi::EntityHiddenAttributePrivate
0016 {
0017 };
0018 
0019 EntityHiddenAttribute::EntityHiddenAttribute() = default;
0020 
0021 EntityHiddenAttribute::~EntityHiddenAttribute() = default;
0022 
0023 QByteArray Akonadi::EntityHiddenAttribute::type() const
0024 {
0025     return QByteArrayLiteral("HIDDEN");
0026 }
0027 
0028 EntityHiddenAttribute *EntityHiddenAttribute::clone() const
0029 {
0030     return new EntityHiddenAttribute();
0031 }
0032 
0033 QByteArray EntityHiddenAttribute::serialized() const
0034 {
0035     return QByteArray();
0036 }
0037 
0038 void EntityHiddenAttribute::deserialize(const QByteArray &data)
0039 {
0040     Q_ASSERT(data.isEmpty());
0041     Q_UNUSED(data)
0042 }