File indexing completed on 2024-04-28 15:26:28

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2007, 2008 Andreas Hartmetz <ahartmetz@gmail.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef KSSLERROR_P_H
0009 #define KSSLERROR_P_H
0010 
0011 #include "kiocore_export.h"
0012 #include "ktcpsocket.h"
0013 
0014 #if KIOCORE_BUILD_DEPRECATED_SINCE(5, 65)
0015 class KSslErrorPrivate
0016 {
0017 public:
0018     KIOCORE_EXPORT static KSslError::Error errorFromQSslError(QSslError::SslError e);
0019     KIOCORE_EXPORT static QSslError::SslError errorFromKSslError(KSslError::Error e);
0020 
0021     QSslError error;
0022 };
0023 #endif
0024 
0025 #endif