]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/GenFds/Rule.py
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / Python / GenFds / Rule.py
1 ## @file
2 # Rule object for generating FFS
3 #
4 # Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
5 #
6 # SPDX-License-Identifier: BSD-2-Clause-Patent
7 #
8
9 ##
10 # Import Modules
11 #
12 from CommonDataClass.FdfClass import RuleClassObject
13
14 ## Rule base class
15 #
16 #
17 class Rule(RuleClassObject):
18 ## The constructor
19 #
20 # @param self The object pointer
21 #
22 def __init__(self):
23 RuleClassObject.__init__(self)