ComixHe fe284e78b6 feat: implementation of the major feature of dbus service
Log:
Signed-off-by: ComixHe <heyuming@deepin.org>
2023-08-07 16:46:57 +08:00

22 lines
406 B
C++

// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#ifndef DESKTOPICONS_H
#define DESKTOPICONS_H
#include "global.h"
class DesktopIcons
{
public:
DesktopIcons() = default;
const IconMap &icons() const noexcept { return m_icons; }
IconMap &iconsRef() noexcept { return m_icons; }
private:
IconMap m_icons;
};
#endif