an intermediate commit to keep updates

This commit is contained in:
Caner Candan 2010-08-16 07:52:30 +02:00
commit 963d59e706
21 changed files with 649 additions and 556 deletions

21
src/doStatUniform.h Normal file
View file

@ -0,0 +1,21 @@
#ifndef _doStatUniform_h
#define _doStatUniform_h
#include "doStat.h"
#include "doUniform.h"
template < typename EOT >
class doStatUniform : public doStat< doUniform< EOT > >
{
public:
doStatUniform( doUniform< EOT >& distrib )
: doStat< doUniform< EOT > >( distrib )
{}
virtual void printOn(std::ostream& os) const
{
os << this->distrib().min() << " " << this->distrib().max();
}
};
#endif // !_doStatUniform_h