smartbannercontainer.py
2008-02-28 00:32...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Product class for the Zope 3 based product package
$Id: smartbannercontainer.py 49707 2007-12-29 23:27:21Z cray $
"""
__author__ = "Elena Antusheva, 2007"
__license__ = "GPL"
__version__ = "$Revision: 49707 $"
from zope.interface import implements
from interfaces import ISmartBannerContainer,ISmartBannerContainerData
from zope.app.container.ordered import OrderedContainer,IOrderedContainer
from zope.app.container.interfaces import IContainer
class SmartBannerContainer( OrderedContainer ) :
''' '''
implements(ISmartBannerContainer,ISmartBannerContainerData,IContainer)
use_fake_place = None
fake_place_root = None



