X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fstructs%2FFilterListStruct.h;h=e21606857a19cb34cbc6e8e3984aaa79e912fc43;hb=refs%2Fheads%2Fmaster;hp=aacc6c0fb5a96125ca22d5e90a80e8d453275897;hpb=a44e607fb5398c80c5de2629017865ae749e8fbf;p=PrivacyBrowserPC.git diff --git a/src/structs/FilterListStruct.h b/src/structs/FilterListStruct.h index aacc6c0..e216068 100644 --- a/src/structs/FilterListStruct.h +++ b/src/structs/FilterListStruct.h @@ -31,9 +31,15 @@ struct FilterListStruct { + // The strings. QString title; QString version; QString filePath; - std::forward_list mainBlockList; + + // The filter lists. + std::forward_list *mainAllowListPointer = new std::forward_list; + std::forward_list *mainBlockListPointer = new std::forward_list; + std::forward_list *initialDomainBlockListPointer = new std::forward_list; + std::forward_list *regularExpressionBlockListPointer = new std::forward_list; }; #endif