Added pickling support for ValueParams

This commit is contained in:
maartenkeijzer 2003-03-19 10:16:56 +00:00
commit 95d3c19211
2 changed files with 23 additions and 7 deletions

View file

@ -62,15 +62,15 @@ def SeperatedVolumeMonitor(eoMonitor):
def __call__(self):
pass
class eoStat(eoStatBase, eoValueParamPy):
class eoStat(eoStatBase, eoValueParam):
def __init__(self):
eoStatBase.__init__(self)
eoValueParamPy.__init__(self)
eoValueParam.__init__(self)
class eoSortedStat(eoSortedStatBase, eoValueParamPy):
class eoSortedStat(eoSortedStatBase, eoValueParam):
def __init__(self):
eoSortedStatBase.__init__(self)
eoValueParamPy.__init__(self)
eoValueParam.__init__(self)
class eoAverageStat(eoStat):
def __call__(self, pop):