File indexing completed on 2025-03-16 03:40:50
0001 /* 0002 This file is part of the KDE libraries 0003 0004 SPDX-FileCopyrightText: 2021 Christoph Cullmann <cullmann@kde.org> 0005 0006 SPDX-License-Identifier: LGPL-2.0-or-later 0007 */ 0008 0009 #ifndef BREEZEICONS_H 0010 #define BREEZEICONS_H 0011 0012 #include <breezeicons_export.h> 0013 0014 /** 0015 * This namespace contains utility functions to integrate the 0016 * Breeze icons into your application. 0017 */ 0018 namespace BreezeIcons 0019 { 0020 0021 /** 0022 * Sets up the Breeze icons and sets the fallback icon theme used by Qt 0023 * to the Breeze icons. 0024 * 0025 * @since 6.0 0026 */ 0027 BREEZEICONS_EXPORT void initIcons(); 0028 0029 } 0030 0031 #endif