EgtMachKernel :

- aggiunta ad interfaccia IMachMgr funzione FindToolInCurrSetup.
This commit is contained in:
Dario Sassi
2020-01-10 12:16:43 +00:00
parent 3d86e340b7
commit 6794b2bca3
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -182,6 +182,7 @@ class MachMgr : public IMachMgr
bool GetDefaultSetupName( std::string& sName) const override ;
bool ImportSetup( const std::string& sName) override ;
bool VerifyCurrSetup( STRVECTOR& vsErrors) override ;
bool FindToolInCurrSetup( const std::string& sTool) override ;
bool UpdateSetup( void) override ;
// Machinings DataBase
bool MdbGetMachiningNewName( std::string& sName) const override ;
+7
View File
@@ -112,6 +112,13 @@ MachMgr::VerifyCurrSetup( STRVECTOR& vsErrors)
return vsErrors.empty() ;
}
//----------------------------------------------------------------------------
bool
MachMgr::FindToolInCurrSetup( const string& sTool)
{
return m_stuMgr.FindTool( sTool) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::UpdateSetup( void)