2009-07-17 11:10:31 +02:00
|
|
|
## @file
|
|
|
|
# Complex Rule object for generating FFS
|
|
|
|
#
|
2010-05-18 07:04:32 +02:00
|
|
|
# Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
|
2009-07-17 11:10:31 +02:00
|
|
|
#
|
2019-04-04 01:03:11 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2009-07-17 11:10:31 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
##
|
|
|
|
# Import Modules
|
|
|
|
#
|
2018-10-15 02:27:53 +02:00
|
|
|
from __future__ import absolute_import
|
2018-07-13 12:18:33 +02:00
|
|
|
from . import Rule
|
2009-07-17 11:10:31 +02:00
|
|
|
from CommonDataClass.FdfClass import RuleComplexFileClassObject
|
|
|
|
|
|
|
|
## complex rule
|
|
|
|
#
|
|
|
|
#
|
|
|
|
class RuleComplexFile(RuleComplexFileClassObject) :
|
|
|
|
## The constructor
|
|
|
|
#
|
|
|
|
# @param self The object pointer
|
|
|
|
#
|
|
|
|
def __init__(self):
|
|
|
|
RuleComplexFileClassObject.__init__(self)
|