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:
+18
-3
@@ -20,11 +20,11 @@
|
||||
#include "NgeReader.h"
|
||||
#include "NgeWriter.h"
|
||||
#include "/EgtDev/Include/EGkStringUtils3d.h"
|
||||
#include "/EgtDev/Include/EgnStringConverter.h"
|
||||
#include "/EgtDev/Include/EgtPointerOwner.h"
|
||||
#include "/EgtDev/Include/EgtNumCollection.h"
|
||||
#include "/EgtDev/Include/SELkMachineId.h"
|
||||
#include "/EgtDev/Include/SELkKeyProc.h"
|
||||
#include "/EgtDev/Include/EgtStringConverter.h"
|
||||
#include "/EgtDev/Include/EgtPointerOwner.h"
|
||||
#include "/EgtDev/Include/EgtNumCollection.h"
|
||||
#include "/EgtDev/Include/EgtKeyCodes.h"
|
||||
#include <new>
|
||||
#include <stack>
|
||||
@@ -2453,6 +2453,13 @@ GeomDB::SetInfo( int nId, const string& sKey, const DBLVECTOR& vdInfo)
|
||||
return SetInfo( nId, sKey, ToString( vdInfo)) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GeomDB::SetInfo( int nId, const string& sKey, const STRVECTOR& vsInfo)
|
||||
{
|
||||
return SetInfo( nId, sKey, ToString( vsInfo)) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GeomDB::GetInfo( int nId, const string& sKey, string& sInfo) const
|
||||
@@ -2537,6 +2544,14 @@ GeomDB::GetInfo( int nId, const string& sKey, DBLVECTOR& vdInfo) const
|
||||
return ( GetInfo( nId, sKey, sInfo) && FromString( sInfo, vdInfo)) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GeomDB::GetInfo( int nId, const string& sKey, STRVECTOR& vsInfo) const
|
||||
{
|
||||
string sInfo ;
|
||||
return ( GetInfo( nId, sKey, sInfo) && FromString( sInfo, vsInfo)) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GeomDB::ExistsInfo( int nId, const string& sKey) const
|
||||
|
||||
Reference in New Issue
Block a user