Added the constructor from a string
This commit is contained in:
parent
53eac8838b
commit
f045212863
1 changed files with 8 additions and 0 deletions
|
|
@ -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()
|
||||
{
|
||||
|
|
|
|||
Reference in a new issue