simplehuman.py
2008-02-28 00:28python # -*- coding: utf-8; ...
#!/usr/bin/env python
# -*- coding: utf-8; -*-
__author__ = 'Gennady Kovalev, 2008'
__copyright__ = '''
Copyright (C) 2007 by Gennady Kovalev. All rights reserved.
Copyright (C) 2007 by BIGUR Company (http://www.bigur.ru/). All rights reserved.
See COPYING file that comes with this distribution.
'''
from zope.interface import implements
from zope.app.container.btree import BTreeContainer
from zope.app.container.contained import Contained
from interfaces import ISimpleHuman, ISimpleHumanContainer
class SimpleHuman(Contained):
'''Simple human'''
implements(ISimpleHuman)
class SimpleHumanContainer(BTreeContainer):
'''Container for humans'''
implements(ISimpleHumanContainer)



