Added the constructor from a string

This commit is contained in:
evomarc 2002-02-08 07:51:59 +00:00
commit f045212863

View file

@ -276,6 +276,14 @@ public:
}
}
/** Ctor from a string
* and don't worry, the readFrom(string) starts by setting everything to 0!
*/
eoRealVectorBounds(string _s) : eoRealBaseVectorBounds()
{
readFrom(_s);
}
/** Dtor: destroy all ownedBounds - BUG ???*/
virtual ~eoRealVectorBounds()
{