]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/Python/GenFds/RuleComplexFile.py
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / Python / GenFds / RuleComplexFile.py
CommitLineData
30fdf114
LG
1## @file\r
2# Complex Rule object for generating FFS\r
3#\r
40d841f6 4# Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>\r
30fdf114 5#\r
2e351cbe 6# SPDX-License-Identifier: BSD-2-Clause-Patent\r
30fdf114
LG
7#\r
8\r
9##\r
10# Import Modules\r
11#\r
1ccc4d89 12from __future__ import absolute_import\r
bfa65b61 13from . import Rule\r
30fdf114
LG
14from CommonDataClass.FdfClass import RuleComplexFileClassObject\r
15\r
16## complex rule\r
17#\r
18#\r
19class RuleComplexFile(RuleComplexFileClassObject) :\r
20 ## The constructor\r
21 #\r
22 # @param self The object pointer\r
23 #\r
24 def __init__(self):\r
25 RuleComplexFileClassObject.__init__(self)\r