File indexing completed on 2024-09-15 04:36:26

0001 /*
0002  *    SPDX-FileCopyrightText: 2015 Daniel Vrátil <dvratil@redhat.com>
0003  *
0004  *    SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #pragma once
0008 
0009 #include <QDebug>
0010 #include <QMetaType>
0011 
0012 #include "akonadiprivate_export.h"
0013 
0014 namespace Akonadi
0015 {
0016 enum class Tristate : qint8 {
0017     False = 0,
0018     True = 1,
0019     Undefined = 2,
0020 };
0021 }
0022 
0023 Q_DECLARE_METATYPE(Akonadi::Tristate)
0024 
0025 AKONADIPRIVATE_EXPORT QDebug operator<<(QDebug dbg, Akonadi::Tristate tristate);