source: waeup/branches/hraban/src/waeup/hostel/hostelcontainer.py @ 3566

Last change on this file since 3566 was 3566, checked in by hraban, 16 years ago

still problems with inheritance and interfaces; works partly; still no tests, sorry...

  • Property svn:eol-style set to native
File size: 249 bytes
Line 
1import grok
2from waeup.interfaces import IBaseContainer
3from waeup.basecontainer import BaseContainer
4from hostel import Hostel
5
6class HostelContainer(BaseContainer):
7    grok.implements(IBaseContainer)
8    name = u"Hostels"
9    childClass = Hostel
Note: See TracBrowser for help on using the repository browser.