EgtGeomKernel :

- modifiche per lettura/scrittura Zmap con tridexel.
This commit is contained in:
Dario Sassi
2016-12-19 18:26:25 +00:00
parent 7ee899b0a2
commit 5d09d963e7
5 changed files with 100 additions and 69 deletions
+11
View File
@@ -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)