diff options
Diffstat (limited to 'src/Configuration.hpp')
| -rw-r--r-- | src/Configuration.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Configuration.hpp b/src/Configuration.hpp new file mode 100644 index 0000000..cc68803 --- /dev/null +++ b/src/Configuration.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include <QtCore> +#include <cstdio> + +class Configuration : public QObject { + Q_OBJECT + +public: + using QObject::QObject; + + QUrl newTabUrl = QUrl("https://lite.duckduckgo.com"); +}; |
