From d9b1beef645fc156f34448632965a621f613108c Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Tue, 4 Feb 2020 07:39:17 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- ENsAutoNester.h | 1 + EXeExecutor.h | 1 + 2 files changed, 2 insertions(+) diff --git a/ENsAutoNester.h b/ENsAutoNester.h index 2029ab6..cc50e8f 100644 --- a/ENsAutoNester.h +++ b/ENsAutoNester.h @@ -50,6 +50,7 @@ class __declspec( novtable) IAutoNester virtual bool AddAnotherOutlineToPart( int nPartId, const PolyArc& AnotherOutline) = 0 ; virtual bool AddToolOutlineToPart( int nPartId, const PolyArc& ToolOutline) = 0 ; virtual bool SetInterpartGap( double dGap) = 0 ; + virtual bool SetReportFile( const std::string& sReportFile) = 0 ; virtual bool Compute( bool bMinimizeOnXvsY, int nMaxTime) = 0 ; virtual bool CancelComputation( void) = 0 ; virtual bool GetComputationStatus( int& nStatus) = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 94145e0..815e083 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -696,6 +696,7 @@ EXE_EXPORT bool ExeAutoNestAddHoleToPart( int nPartId, int nHoleId) ; EXE_EXPORT bool ExeAutoNestAddAnotherOutlineToPart( int nPartId, int nAnotherOutlineId) ; EXE_EXPORT bool ExeAutoNestAddToolOutlineToPart( int nPartId, int nToolOutlineId) ; EXE_EXPORT bool ExeAutoNestSetInterpartGap( double dGap) ; +EXE_EXPORT bool ExeAutoNestSetReportFile( const std::string& sReportFile) ; EXE_EXPORT bool ExeAutoNestCompute( bool bMinimizeOnXvsY, int nMaxTime) ; EXE_EXPORT bool ExeAutoNestCancelComputation( void) ; EXE_EXPORT bool ExeAutoNestGetComputationStatus( int& nStatus) ;