File indexing completed on 2024-04-28 04:42:43

0001 /*
0002  * SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org>
0003  * SPDX-License-Identifier: LGPL-2.0-or-later
0004  */
0005 
0006 #ifndef KWEATHERCORE_REPLY_P_H
0007 #define KWEATHERCORE_REPLY_P_H
0008 
0009 #include "reply.h"
0010 
0011 #include <QString>
0012 
0013 namespace KWeatherCore
0014 {
0015 
0016 class ReplyPrivate
0017 {
0018 public:
0019     void setError(Reply::Error error, const QString &msg = {});
0020 
0021     Reply::Error m_error = Reply::NoError;
0022     QString m_errorMessage;
0023 };
0024 
0025 }
0026 
0027 #endif // KWEATHERCORE_REPLY_P_H