Updated documentation to give proper include file in doxygen and define a module selectors

Also added a load(stream) and save(stream) to eoState
This commit is contained in:
mac 2000-04-09 09:46:20 +00:00
commit f357a908bf
7 changed files with 46 additions and 9 deletions

View file

@ -36,6 +36,9 @@ class eoStatBase
public :
virtual ~eoStatBase(){}
/**
calculate some statistic on the population
*/
virtual void operator()(const eoPop<EOT>& _pop) = 0;
};
@ -44,8 +47,6 @@ class eoStat : public eoValueParam<T>, public eoStatBase<EOT>
{
public :
eoStat(T _value, std::string _description) : eoValueParam<T>(_value, _description) {}
virtual void operator()(const eoPop<EOT>& _pop) = 0;
};
#include <numeric>