ideaannotation.py
2008-02-28 09:29...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Product class for the Zope 3 based product package
$Id: ideaannotation.py 50354 2008-01-26 16:44:14Z cray $
"""
__author__ = "........., ....."
__license__ = "GPL"
__version__ = "$Revision: 50354 $"
from persistent import Persistent
from zope.interface import Interface
from zope.interface import implements,implementedBy
class IdeaAnnotation(Persistent) :
pass



