EgtGeomKernel 1.6e2 :

- adattamenti per modifica nomi include di base
- allineate Set/GetInfo di GdbIterator a quelle di GeomDB
- aggiunte Set/GetInfo per STRVECTOR.
This commit is contained in:
Dario Sassi
2015-05-11 21:00:48 +00:00
parent 0934bb229f
commit 6bbdf97993
17 changed files with 139 additions and 52 deletions
+45
View File
@@ -1221,6 +1221,27 @@ GdbIterator::SetInfo( const string& sKey, const Frame3d& frInfo)
return SetInfo( sKey, ToString( frInfo)) ;
}
//----------------------------------------------------------------------------
bool
GdbIterator::SetInfo( const string& sKey, const INTVECTOR& vnInfo)
{
return SetInfo( sKey, ToString( vnInfo)) ;
}
//----------------------------------------------------------------------------
bool
GdbIterator::SetInfo( const string& sKey, const DBLVECTOR& vdInfo)
{
return SetInfo( sKey, ToString( vdInfo)) ;
}
//----------------------------------------------------------------------------
bool
GdbIterator::SetInfo( const string& sKey, const STRVECTOR& vsInfo)
{
return SetInfo( sKey, ToString( vsInfo)) ;
}
//----------------------------------------------------------------------------
bool
GdbIterator::GetInfo( const string& sKey, string& sInfo) const
@@ -1280,6 +1301,30 @@ GdbIterator::GetInfo( const string& sKey, Frame3d& frInfo) const
return ( GetInfo( sKey, sInfo) && FromString( sInfo, frInfo)) ;
}
//----------------------------------------------------------------------------
bool
GdbIterator::GetInfo( const string& sKey, INTVECTOR& vnInfo) const
{
string sInfo ;
return ( GetInfo( sKey, sInfo) && FromString( sInfo, vnInfo)) ;
}
//----------------------------------------------------------------------------
bool
GdbIterator::GetInfo( const string& sKey, DBLVECTOR& vdInfo) const
{
string sInfo ;
return ( GetInfo( sKey, sInfo) && FromString( sInfo, vdInfo)) ;
}
//----------------------------------------------------------------------------
bool
GdbIterator::GetInfo( const string& sKey, STRVECTOR& vsInfo) const
{
string sInfo ;
return ( GetInfo( sKey, sInfo) && FromString( sInfo, vsInfo)) ;
}
//----------------------------------------------------------------------------
bool
GdbIterator::ExistsInfo( const string& sKey) const