From 33345e383409f6f3de452253a2f0fae60963c336 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Tue, 24 Oct 2017 18:20:51 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- EMkMachMgr.h | 4 ++-- EXeExecutor.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/EMkMachMgr.h b/EMkMachMgr.h index df34f19..fd564fa 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -209,8 +209,8 @@ class __declspec( novtable) IMachMgr virtual bool MachiningPreview( bool bRecalc) = 0 ; virtual bool ExistsMachiningPreview( void) = 0 ; virtual bool RemoveMachiningPreview( void) = 0 ; - virtual bool MachiningApply( bool bRecalc) = 0 ; - virtual bool MachiningUpdate( void) = 0 ; + virtual bool MachiningApply( bool bRecalc, bool bPostApply = true) = 0 ; + virtual bool MachiningUpdate( bool bPostApply = true) = 0 ; virtual bool GetMachiningParam( int nType, bool& bVal) const = 0 ; virtual bool GetMachiningParam( int nType, int& dVal) const = 0 ; virtual bool GetMachiningParam( int nType, double& dVal) const = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 3858130..26d9ab0 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -776,8 +776,8 @@ EXE_EXPORT bool ExeSetMachiningParam( int nType, double dVal) ; EXE_EXPORT bool ExeSetMachiningParam( int nType, const std::string& sVal) ; EXE_EXPORT bool ExeSetMachiningGeometry( const SELVECTOR& vIds) ; EXE_EXPORT bool ExePreviewMachining( bool bRecalc) ; -EXE_EXPORT bool ExeApplyMachining( bool bRecalc) ; -EXE_EXPORT bool ExeUpdateMachining( void) ; +EXE_EXPORT bool ExeApplyMachining( bool bRecalc, bool bPostApply = true) ; +EXE_EXPORT bool ExeUpdateMachining( bool bPostApply = true) ; EXE_EXPORT bool ExeGetMachiningParam( int nType, bool& bVal) ; EXE_EXPORT bool ExeGetMachiningParam( int nType, int& nVal) ; EXE_EXPORT bool ExeGetMachiningParam( int nType, double& dVal) ;