]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/structs/FilterListStruct.h
Finish block list implementation.
[PrivacyBrowserPC.git] / src / structs / FilterListStruct.h
index aacc6c0fb5a96125ca22d5e90a80e8d453275897..e21606857a19cb34cbc6e8e3984aaa79e912fc43 100644 (file)
 
 struct FilterListStruct
 {
+    // The strings.
     QString title;
     QString version;
     QString filePath;
-    std::forward_list<EntryStruct*> mainBlockList;
+
+    // The filter lists.
+    std::forward_list<EntryStruct *> *mainAllowListPointer = new std::forward_list<EntryStruct *>;
+    std::forward_list<EntryStruct *> *mainBlockListPointer = new std::forward_list<EntryStruct *>;
+    std::forward_list<EntryStruct *> *initialDomainBlockListPointer = new std::forward_list<EntryStruct *>;
+    std::forward_list<EntryStruct *> *regularExpressionBlockListPointer = new std::forward_list<EntryStruct *>;
 };
 #endif