]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/main.cpp
Partial filter list implementation.
[PrivacyBrowserPC.git] / src / main.cpp
index 0c499f2750e19f01ea294c011c6e7701542f72b4..9ff1e4d0534cda8c0c3e14a84f89366e4d17aac2 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright 2022-2024 Soren Stoutner <soren@stoutner.com>.
  *
- * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
+ * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc/>.
  *
  * Privacy Browser PC is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  */
 
 // Application headers.
+#include "GlobalVariables.h"
 #include "databases/BookmarksDatabase.h"
 #include "databases/CookiesDatabase.h"
 #include "databases/DomainsDatabase.h"
+#include "helpers/FilterListHelper.h"
 #include "windows/BrowserWindow.h"
 
 // KDE Frameworks headers.
@@ -34,6 +36,9 @@
 #include <QCommandLineParser>
 #include <QFile>
 
+// Declare the global variables.
+FilterListHelper *globalFilterListHelperPointer;
+
 int main(int argc, char *argv[])
 {
     // Create the application.
@@ -92,6 +97,9 @@ int main(int argc, char *argv[])
     CookiesDatabase::addDatabase();
     DomainsDatabase::addDatabase();
 
+    // Populate the filter lists.
+    globalFilterListHelperPointer = new FilterListHelper;
+
     // Create the main window.
     BrowserWindow *browserWindowPointer = new BrowserWindow();