EgtGeomKernel 1.5f5 :

- gestione salvataggio in modalità testo compresso
- aggiunto controlli in scritture per salvataggio.
This commit is contained in:
Dario Sassi
2014-06-18 07:27:03 +00:00
parent 26c2ad702a
commit 4097bcd178
23 changed files with 359 additions and 261 deletions
+4 -2
View File
@@ -165,8 +165,10 @@ bool
CurveLine::Save( NgeWriter& ngeOut) const
{
// parametri : punti iniziale e finale
ngeOut.WritePoint( m_PtStart, ";") ;
ngeOut.WritePoint( m_PtEnd, ";", true) ;
if ( ! ngeOut.WritePoint( m_PtStart, ";"))
return false ;
if ( ! ngeOut.WritePoint( m_PtEnd, ";", true))
return false ;
return true ;
}