X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fstructs%2FOverrideStruct.h;fp=src%2Fstructs%2FOverrideStruct.h;h=0568a79636bcfe57e4bf3eeddeb461d929f2078a;hb=f8f8d907d0caa128abf73696f812f8e92db812b7;hp=0000000000000000000000000000000000000000;hpb=a44e607fb5398c80c5de2629017865ae749e8fbf;p=PrivacyBrowserPC.git diff --git a/src/structs/OverrideStruct.h b/src/structs/OverrideStruct.h new file mode 100644 index 0000000..0568a79 --- /dev/null +++ b/src/structs/OverrideStruct.h @@ -0,0 +1,38 @@ +/* + * Copyright 2024 Soren Stoutner . + * + * This file is part of 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 + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Privacy Browser PC is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Privacy Browser PC. If not, see . + */ + +#ifndef OVERRIDESTRUCT_H +#define OVERRIDESTRUCT_H + +struct OverrideStruct +{ + bool hasOverride = false; + bool font = false; + bool image = false; + bool mainFrame = false; + bool media = false; + bool object = false; + bool other = false; + bool ping = false; + bool script = false; + bool styleSheet = false; + bool subFrame = false; + bool xmlHttpRequest = false; +}; +#endif