1 /*
2  *    SPDX-FileCopyrightText: 2015 Daniel Vrátil <dvratil@redhat.com>
3  *
4  *    SPDX-License-Identifier: LGPL-2.0-or-later
5  */
6 
7 #pragma once
8 
9 #include <QDebug>
10 #include <QMetaType>
11 
12 #include "akonadiprivate_export.h"
13 
14 namespace Akonadi
15 {
16 enum class Tristate : qint8 {
17     False = 0,
18     True = 1,
19     Undefined = 2,
20 };
21 }
22 
23 Q_DECLARE_METATYPE(Akonadi::Tristate)
24 
25 AKONADIPRIVATE_EXPORT QDebug operator<<(QDebug dbg, Akonadi::Tristate tristate);
26 
27