8920ae7cec7bb887700b0e77cb9bceb34f3a432e
[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 import sfa.managers.aggregate_manager_max
7
8 class max (pl):
9
10 # the max flavour behaves like pl, except for 
11 # the aggregate
12     def aggregate_manager_class (self) :
13         return sfa.managers.aggregate_manager_max.AggregateManagerMax
14
15 # I believe the component stuff is not implemented
16     def component_manager_class (self):
17         return None
18     def component_driver_class (self):
19         return None
20
21