oops - missing file
[myslice.git] / engine / composite.py
1 from engine.plugin import Plugin
2 from engine.requirements import Requirements
3
4 class Composite (Plugin):
5
6     def __init__ (self, sons=[], *args, **kwds):
7         self.sons=sons
8         Plugin.__init__ (self, *args, **kwds)
9         
10     def insert (self, plugin):
11         self.sons.append(plugin)
12