EgtMachKernel 1.8c4 :

- aggiunta GetAllTablesNames.
This commit is contained in:
Dario Sassi
2017-03-09 10:53:00 +00:00
parent 6fce5b366d
commit bb9f2bd2a3
7 changed files with 60 additions and 0 deletions
+14
View File
@@ -428,6 +428,20 @@ MachMgr::GetAllHeadsNames( STRVECTOR& vNames) const
return pMch->GetAllHeadsNames( vNames) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::GetAllTablesNames( STRVECTOR& vNames) const
{
// pulisco il vettore
vNames.clear() ;
// recupero la macchina corrente
Machine* pMch = GetCurrMachine() ;
if ( pMch == nullptr)
return false ;
// richiedo elenco tavole alla macchina
return pMch->GetAllTablesNames( vNames) ;
}
//----------------------------------------------------------------------------
int
MachMgr::GetCurrLinAxes( void) const