EgtExecutor 1.8c4 :

- aggiunta a Exe e Lua GetAllTablesNames.
This commit is contained in:
Dario Sassi
2017-03-09 10:53:39 +00:00
parent dfb706d40f
commit ffb55dcda2
3 changed files with 28 additions and 0 deletions
+10
View File
@@ -2476,6 +2476,16 @@ ExeGetAllHeadsNames( STRVECTOR& vNames)
return pMachMgr->GetAllHeadsNames( vNames) ;
}
//-----------------------------------------------------------------------------
bool
ExeGetAllTablesNames( STRVECTOR& vNames)
{
IMachMgr* pMachMgr = GetCurrMachMgr() ;
VERIFY_MACHMGR( pMachMgr, false)
// recupero l'elenco delle tavole
return pMachMgr->GetAllTablesNames( vNames) ;
}
//-----------------------------------------------------------------------------
bool
ExeSetAxisPos( const string& sAxis, double dVal)