3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-23 15:45:53 +00:00

21 lines
350 B
C
Raw Normal View History

2022-03-05 22:41:29 +05:00
/*
SPDX-FileCopyrightText: 2015 Eike Hein <hein@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <QObject>
class SystemSettings : public QObject
{
Q_OBJECT
public:
explicit SystemSettings(QObject *parent = nullptr);
~SystemSettings() override;
Q_INVOKABLE QString picturesLocation() const;
};