/* * Copyright (c) 2022, Filiph Sandström * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #define AK_DONT_REPLACE_STD #include #include namespace Browser { class Settings : public QObject { public: Settings(); QString homepage(); void set_homepage(QString const& homepage); QString new_tab_page(); void set_new_tab_page(QString const& page); private: QSettings* m_qsettings; }; }