From 2ae2d43e194e2c0581661edc168ce689c332dc77 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Wed, 3 Apr 2024 08:14:40 +0200 Subject: [PATCH] Include : - aggiornamento prototipi. --- EMkMachMgr.h | 4 +++- EXeExecutor.h | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/EMkMachMgr.h b/EMkMachMgr.h index 1e20530..b66290a 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -1,7 +1,7 @@ //---------------------------------------------------------------------------- // EgalTech 2015-2024 //---------------------------------------------------------------------------- -// File : EMkMachMgr.h Data : 30.03.24 Versione : 2.6d1 +// File : EMkMachMgr.h Data : 02.04.24 Versione : 2.6d1 // Contenuto : Dichiarazione della interfaccia IMachMgr. // // @@ -16,6 +16,7 @@ // 25.08.23 DS Aggiunta in interfaccia CopyMachGroup. // 28.10.23 DS Aggiunte in interfaccia GetClEntAxesVal, GetToolSetupPosInCurrSetup e GetAllCurrAxesName. // 30.03.24 DS Aggiunte in interfaccia GetAllAxesNames e GetCalcTable. +// 02.04.24 DS Aggiunta in interfaccia GetClEntAxesMask. // //---------------------------------------------------------------------------- @@ -270,6 +271,7 @@ class __declspec( novtable) IMachMgr virtual bool GetClEntMove( int nEntId, int& nMove) const = 0 ; virtual bool GetClEntFlag( int nEntId, int& nFlag, int& nFlag2) const = 0 ; virtual bool GetClEntIndex( int nEntId, int& nIndex) const = 0 ; + virtual bool GetClEntAxesMask( int nEntId, int& nMask) const = 0 ; virtual bool GetClEntAxesVal( int nEntId, DBLVECTOR& vAxes) const = 0 ; // Simulation virtual bool SimInit( void) = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index a64acec..ce96d14 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -1168,6 +1168,7 @@ EXE_EXPORT bool ExeUpdateAllMachiningsEx( bool bStopOnFirstErr, std::string& sEr EXE_EXPORT bool ExeGetClEntMove( int nEntId, int& nMove) ; EXE_EXPORT bool ExeGetClEntFlag( int nEntId, int& nFlag, int& nFlag2) ; EXE_EXPORT bool ExeGetClEntIndex( int nEntId, int& nIndex) ; +EXE_EXPORT bool ExeGetClEntAxesMask( int nEntId, int& nMask) ; EXE_EXPORT bool ExeGetClEntAxesVal( int nEntId, DBLVECTOR& vAxes) ; // Simulation