From d0b1ed59cb77c9cec64706cd62a8dc127e24a206 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Wed, 17 Feb 2016 14:37:37 +0000 Subject: [PATCH] Include : - aggiornamento. --- EInAPI.h | 1 + EMkMachMgr.h | 1 + EXeConst.h | 3 ++- EXeExecutor.h | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/EInAPI.h b/EInAPI.h index 0f60d95..120494e 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -514,6 +514,7 @@ EIN_EXPORT BOOL __stdcall EgtModifyRawPartSize( int nRawId, double dLength, doub EIN_EXPORT BOOL __stdcall EgtModifyRawPartHeight( int nRawId, double dHeight) ; EIN_EXPORT BOOL __stdcall EgtKeepRawPart( int nRawId) ; EIN_EXPORT BOOL __stdcall EgtVerifyRawPartPhase( int nRawId, int nPhase) ; +EIN_EXPORT BOOL __stdcall EgtRemoveRawPartFromCurrPhase( int nRawId) ; EIN_EXPORT BOOL __stdcall EgtRemoveRawPart( int nRawId) ; EIN_EXPORT BOOL __stdcall EgtMoveToCornerRawPart( int nRawId, const double ptCorner[3], int nFlag) ; EIN_EXPORT BOOL __stdcall EgtMoveRawPart( int nRawId, const double vtMove[3]) ; diff --git a/EMkMachMgr.h b/EMkMachMgr.h index 6e313ac..140ec06 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -66,6 +66,7 @@ class __declspec( novtable) IMachMgr virtual bool ModifyRawPartHeight( int nRawId, double dHeight) = 0 ; virtual bool KeepRawPart( int nRawId) = 0 ; virtual bool VerifyRawPartPhase( int nRawId, int nPhase) const = 0 ; + virtual bool RemoveRawPartFromCurrPhase( int nRawId) = 0 ; virtual bool RemoveRawPart( int nRawId) = 0 ; virtual bool RotateRawPart( int nRawId, const Vector3d& vtAx, double dAngRotDeg) = 0 ; virtual bool MoveToCornerRawPart( int nRawId, const Point3d& ptCorner, int nFlag) = 0 ; diff --git a/EXeConst.h b/EXeConst.h index c970d0b..c78cfe3 100644 --- a/EXeConst.h +++ b/EXeConst.h @@ -69,5 +69,6 @@ enum CarRes{ CAR_INTERF = 0, // interferiscono entrambi gli allu CAR_LO_OK = 2, // allungameno uscita va bene CAR_LI_LO_OK = 1 + 2} ; // entrambi gli allungamenti vanno bene -//----------------- Costante per sostituzione nome progetto -------------------- +//----------------- Costanti per sostituzione direttorio e nome progetto -------------------- +const std::string SUB_PROJECT_DIR = "%PRJDIR%" ; const std::string SUB_PROJECT_TITLE = "%PRJTITLE%" ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 330f157..22d6ace 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -552,6 +552,7 @@ EXE_EXPORT bool ExeModifyRawPartSize( int nRawId, double dLength, double dWidth, EXE_EXPORT bool ExeModifyRawPartHeight( int nRawId, double dHeight) ; EXE_EXPORT bool ExeKeepRawPart( int nRawId) ; EXE_EXPORT bool ExeVerifyRawPartPhase( int nRawId, int nPhase) ; +EXE_EXPORT bool ExeRemoveRawPartFromCurrPhase( int nRawId) ; EXE_EXPORT bool ExeRemoveRawPart( int nRawId) ; EXE_EXPORT bool ExeRotateRawPart( int nRawId, const Vector3d& vtAx, double dAngRotDeg) ; EXE_EXPORT bool ExeMoveToCornerRawPart( int nRawId, const Point3d& ptCorner, int nFlag) ;