2009-07-17 11:10:31 +02:00
|
|
|
## @file
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
from CommonDataClass.FdfClass import RuleClassObject
|
|
|
|
|
|
|
|
## Rule base class
|
|
|
|
#
|
|
|
|
#
|
|
|
|
class Rule(RuleClassObject):
|
|
|
|
## The constructor
|
|
|
|
#
|
|
|
|
# @param self The object pointer
|
|
|
|
#
|
|
|
|
def __init__(self):
|
|
|
|
RuleClassObject.__init__(self)
|