blob: dad9f1b9bef0751f11ea263996670d83ac231aa5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#define AK_DONT_REPLACE_STD
#include <AK/DeprecatedString.h>
#include <QSettings>
namespace Browser {
class Settings {
public:
Settings(QObject* parent);
QString homepage();
void set_homepage(QString const& homepage);
private:
QSettings* m_qsettings;
};
}
|