blob: 032d12e1219fde590c3673a8683c4c2e9683ea96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <QtCore>
class Configuration : public QObject {
Q_OBJECT
public:
using QObject::QObject;
QUrl new_tab_url = QUrl("https://lite.duckduckgo.com");
};
|