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:
+16
@@ -829,6 +829,13 @@ GdbObj::SetInfo( const string& sKey, const DBLVECTOR& vdInfo)
|
||||
return SetInfo( sKey, ToString( vdInfo)) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GdbObj::SetInfo( const string& sKey, const STRVECTOR& vsInfo)
|
||||
{
|
||||
return SetInfo( sKey, ToString( vsInfo)) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GdbObj::GetInfo( const string& sKey, string& sInfo) const
|
||||
@@ -914,6 +921,15 @@ GdbObj::GetInfo( const string& sKey, DBLVECTOR& vdInfo) const
|
||||
return ( GetInfo( sKey, sInfo) && FromString( sInfo, vdInfo)) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GdbObj::GetInfo( const string& sKey, STRVECTOR& vsInfo) const
|
||||
{
|
||||
vsInfo.clear() ;
|
||||
string sInfo ;
|
||||
return ( GetInfo( sKey, sInfo) && FromString( sInfo, vsInfo)) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GdbObj::ExistsInfo( const string& sKey) const
|
||||
|
||||
Reference in New Issue
Block a user