aboutsummaryrefslogtreecommitdiff
path: root/src/Configuration.hpp
blob: 06335dc1e50b7a7cd20404e41d5cf6361e1cce93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <QtCore>

class Configuration : public QObject {
  Q_OBJECT

public:
  using QObject::QObject;

  QString new_view_url = "https://duckduckgo.com";

  bool close_window_when_no_views = true;
};