From 59cc46cf391b0021ad0fe75f1d306cb047971464 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Sun, 22 May 2016 17:08:07 +0000 Subject: [PATCH] Include : - aggiornamenti. --- EMkMachMgr.h | 2 ++ EXeExecutor.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/EMkMachMgr.h b/EMkMachMgr.h index 3befbad..227cd3a 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -219,6 +219,8 @@ class __declspec( novtable) IMachMgr virtual bool ResetAxisPos( const std::string& sAxis) = 0 ; virtual bool ResetAllAxesPos( void) = 0 ; virtual bool LoadTool( const std::string& sHead, int nExit, const std::string& sTool) = 0 ; + virtual bool GetLoadedTool( const std::string& sHead, int nExit, std::string& sTool) = 0 ; + virtual bool UnloadTool( const std::string& sHead, int nExit) = 0 ; virtual bool ResetHeadSet( const std::string& sHead) = 0 ; virtual bool SetMachineLook( int nFlag) = 0 ; } ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 60b3bf2..5fed970 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -707,6 +707,8 @@ EXE_EXPORT bool ExeGetAxisPos( const std::string& sAxis, double* pdVal) ; EXE_EXPORT bool ExeGetAxisHomePos( const std::string& sAxis, double* pdHomeVal) ; EXE_EXPORT bool ExeResetAxisPos( const std::string& sAxis) ; EXE_EXPORT bool ExeLoadTool( const std::string& sHead, int nExit, const std::string& sTool) ; +EXE_EXPORT bool ExeGetLoadedTool( const std::string& sHead, int nExit, std::string& sTool) ; +EXE_EXPORT bool ExeUnloadTool( const std::string& sHead, int nExit) ; EXE_EXPORT bool ExeResetHeadSet( const std::string& sHead) ; EXE_EXPORT bool ExeSetMachineLook( int nFlag) ;