From f0452128638bbd915d5c1c90e05c2de9c40e31ec Mon Sep 17 00:00:00 2001 From: evomarc Date: Fri, 8 Feb 2002 07:51:59 +0000 Subject: [PATCH] Added the constructor from a string --- eo/src/utils/eoRealVectorBounds.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/eo/src/utils/eoRealVectorBounds.h b/eo/src/utils/eoRealVectorBounds.h index c29e2fcc..2fa1ffeb 100644 --- a/eo/src/utils/eoRealVectorBounds.h +++ b/eo/src/utils/eoRealVectorBounds.h @@ -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() {