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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user