6from .visitor_visitor_shop
import Visitor_Shop
17 if visitor
and hasattr(visitor,
"VisitRestaurant"):
18 visitor.VisitRestaurant(self)
33 if visitor
and hasattr(visitor,
"VisitButcher"):
34 visitor.VisitButcher(self)
49 if visitor
and hasattr(visitor,
"VisitBaker"):
50 visitor.VisitBaker(self)
65 if visitor
and hasattr(visitor,
"VisitVegetableGrocer"):
66 visitor.VisitVegetableGrocer(self)
81 if visitor
and hasattr(visitor,
"VisitCondimentGrocer"):
82 visitor.VisitCondimentGrocer(self)
97 if visitor
and hasattr(visitor,
"VisitPickleGrocer"):
98 visitor.VisitPickleGrocer(self)
113 if visitor
and hasattr(visitor,
"VisitMaker"):
114 visitor.VisitMaker(self)
None Accept(self, visitor)
Handle visitors to this class.
Represent a butcher shop.
None Accept(self, visitor)
Handle visitors to this class.
Represent a condiment grocer.
None Accept(self, visitor)
Handle visitors to this class.
Represent a maker (of things).
None Accept(self, visitor)
Handle visitors to this class.
Represent a pickle grocer.
None Accept(self, visitor)
Handle visitors to this class.
Represent a restaurant shop.
None Accept(self, visitor)
Handle visitors to this class.
Represent a vegetable grocer.
None Accept(self, visitor)
Handle visitors to this class.
Base class that all shops must implement.