File indexing completed on 2024-11-24 04:17:00
0001 /* 0002 SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org> 0003 SPDX-License-Identifier: LGPL-2.0-or-later 0004 */ 0005 0006 #ifndef KUNIFIEDPUSH_DISTRIBUTORSTATUS_P_H 0007 #define KUNIFIEDPUSH_DISTRIBUTORSTATUS_P_H 0008 0009 namespace KUnifiedPush 0010 { 0011 0012 /** Connector-side functions shared between the connector library and the KCM. */ 0013 namespace DistributorStatus { 0014 Q_NAMESPACE 0015 0016 enum Status { 0017 Unknown, 0018 Idle, 0019 Connected, 0020 NoNetwork, 0021 AuthenticationError, 0022 NoSetup 0023 }; 0024 Q_ENUM_NS(Status) 0025 } 0026 0027 } 0028 0029 #endif