]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/GenFds/RuleSimpleFile.py
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / Python / GenFds / RuleSimpleFile.py
1 ## @file
2 # Simple 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 __future__ import absolute_import
13 from . import Rule
14 from CommonDataClass.FdfClass import RuleSimpleFileClassObject
15
16 ## simple rule
17 #
18 #
19 class RuleSimpleFile (RuleSimpleFileClassObject) :
20 ## The constructor
21 #
22 # @param self The object pointer
23 #
24 def __init__(self):
25 RuleSimpleFileClassObject.__init__(self)