EgtMachKernel :

- aggiunta in interfaccia funzione ExistsCurrSetup.
This commit is contained in:
Dario Sassi
2025-12-11 08:50:20 +01:00
parent 46aa62244c
commit 2973f3f627
2 changed files with 14 additions and 6 deletions
+10 -3
View File
@@ -71,6 +71,13 @@ MachMgr::ImportSetup( const string& sName)
return m_stuMgr.Save() ;
}
//----------------------------------------------------------------------------
bool
MachMgr::ExistsCurrSetup( void) const
{
return m_stuMgr.Exists() ;
}
//----------------------------------------------------------------------------
bool
MachMgr::VerifyCurrSetup( STRVECTOR& vsErrors)
@@ -125,21 +132,21 @@ MachMgr::VerifyCurrSetup( STRVECTOR& vsErrors)
//----------------------------------------------------------------------------
bool
MachMgr::FindToolInCurrSetup( const string& sTool)
MachMgr::FindToolInCurrSetup( const string& sTool) const
{
return m_stuMgr.FindTool( sTool) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::GetToolSetupPosInCurrSetup( const string& sTool, string& sTcPos)
MachMgr::GetToolSetupPosInCurrSetup( const string& sTool, string& sTcPos) const
{
return m_stuMgr.GetToolSetupPos( sTool, sTcPos) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::GetToolsInCurrSetupPos( const string& sTcPos, STRVECTOR& vsTools)
MachMgr::GetToolsInCurrSetupPos( const string& sTcPos, STRVECTOR& vsTools) const
{
return m_stuMgr.GetToolsInSetupPos( sTcPos, vsTools) ;
}