diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-16 15:28:00 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-16 15:29:59 +0530 |
| commit | 041f8933be28d0fcff1196792f30c5ca3176c155 (patch) | |
| tree | 5fceaf5844f3312e8db63425c5c25825df594861 /include/Configuration.hpp | |
| parent | 350d2bd7ccf80b91abdff154344f0ce88080a195 (diff) | |
| download | null-browser-041f8933be28d0fcff1196792f30c5ca3176c155.tar.gz null-browser-041f8933be28d0fcff1196792f30c5ca3176c155.zip | |
Add configuration class
Diffstat (limited to 'include/Configuration.hpp')
| -rw-r--r-- | include/Configuration.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/Configuration.hpp b/include/Configuration.hpp new file mode 100644 index 0000000..cc68803 --- /dev/null +++ b/include/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"); +}; |
