importer revisited - sfa-import.py sfa-nuke.py (no more -plc)
[sfa.git] / sfa / generic / max.py
1 # an example of how to plugin the max aggregate manager with the flavour model
2 # might need to be tested
3
4 from sfa.generic.pl import pl
5
6 class max (pl):
7
8 # the max flavour behaves like pl, except for 
9 # the aggregate
10     def aggregate_manager_class (self) :
11         import sfa.managers.aggregate_manager_max
12         return sfa.managers.aggregate_manager_max.AggregateManagerMax
13
14 # I believe the component stuff is not implemented
15     def component_manager_class (self):
16         return None
17     def component_driver_class (self):
18         return None
19
20