Added className (mysteriously missint) mandatory for eoCombinedInit

This commit is contained in:
evomarc 2004-07-16 08:45:02 +00:00
commit b72ea29e0d

View file

@ -45,10 +45,10 @@ template <class EOT>
class eoInit : public eoUF<EOT&, void> class eoInit : public eoUF<EOT&, void>
{ {
public: public:
// virtual void operator()(EOT& chrom)
// { /** SHould be pure virtual, but then we should go over the whole
// throw std::runtime_error("In the eoInit base class"); // just in case * code to write the method for all derived classes ... MS 16/7/04 */
// } virtual std::string className(void) const { return "eoInit"; }
}; };
/** turning an eoInit into a generator /** turning an eoInit into a generator