File indexing completed on 2025-06-29 04:47:06

0001 /*
0002     SPDX-FileCopyrightText: 2019 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <memory>
0010 
0011 class GlobalParams;
0012 
0013 namespace KItinerary {
0014 
0015 /** RAII wrapper of the globalParams object. */
0016 class PopplerGlobalParams
0017 {
0018 public:
0019     PopplerGlobalParams();
0020     ~PopplerGlobalParams();
0021 
0022 private:
0023     std::unique_ptr<GlobalParams> m_prev;
0024 };
0025 
0026 }
0027