EgtGeomKernel :
- modifiche per lettura/scrittura Zmap con tridexel.
This commit is contained in:
@@ -187,6 +187,17 @@ NgeReader::ReadInt( int& nVal, const char* szSep, bool bEndL)
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
NgeReader::ReadInt( unsigned int& nVal, const char* szSep, bool bEndL)
|
||||
{
|
||||
int nTemp ;
|
||||
if ( ! ReadInt( nTemp, szSep, bEndL))
|
||||
return false ;
|
||||
nVal = unsigned int( nTemp) ;
|
||||
return true ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
NgeReader::ReadDouble( double& dVal, const char* szSep, bool bEndL)
|
||||
|
||||
Reference in New Issue
Block a user