File indexing completed on 2024-05-12 16:59:03

0001 /*
0002     SPDX-FileCopyrightText: 2019 Harald Sitter <sitter@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef CLIENTBASE_H
0008 #define CLIENTBASE_H
0009 
0010 #include "connection.h"
0011 
0012 namespace Bugzilla
0013 {
0014 class ClientBase
0015 {
0016 public:
0017     explicit ClientBase(const Connection &connection = Bugzilla::connection());
0018 
0019 protected:
0020     const Connection &m_connection;
0021 };
0022 
0023 } // namespace Bugzilla
0024 
0025 #endif // CLIENTBASE_H