EgtGeomKernel 1.5i4 :

- tolto controllo antidebug da release per VB.NET
- aggiunti metodi CurveArc::Set2PNRS e SetC2PN
- aggiunta scrittura MachineId come commento in NGE di testo.
This commit is contained in:
Dario Sassi
2014-09-18 14:56:47 +00:00
parent ffd9f0c1bd
commit 46fb7bd5f4
7 changed files with 79 additions and 6 deletions
+11
View File
@@ -274,3 +274,14 @@ NgeWriter::WriteCol( const Color& cCol, const char* szSep, bool bEndL)
return WriteStringOutTxt( m_OutTxtFile, ToString( cCol).c_str(), szSep, bEndL) ;
}
}
//----------------------------------------------------------------------------
bool
NgeWriter::WriteRemark( const string& sVal)
{
if ( m_bBinary)
return true ;
else
return ( WriteStringOutTxt( m_OutTxtFile, "//", nullptr, false) &&
WriteStringOutTxt( m_OutTxtFile, sVal.c_str(), nullptr, true)) ;
}