EgtMachKernel 1.6j6 :

- aggiunta TdbIsCurrToolModified.
This commit is contained in:
Dario Sassi
2015-11-01 08:55:36 +00:00
parent 05b5c993ac
commit 3cd111ce12
6 changed files with 64 additions and 0 deletions
+12
View File
@@ -114,6 +114,18 @@ MachMgr::TdbSaveCurrTool( void)
return pTsMgr->SaveCurrTool() ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbIsCurrToolModified( void)
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// verifico se l'utensile corrente è stato modificato
return pTsMgr->IsCurrToolModified() ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbSetCurrToolParam( int nType, int nVal)