mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-23 07:35:54 +00:00
21 lines
350 B
C++
21 lines
350 B
C++
/*
|
|
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;
|
|
};
|