From 25adaf0623eedd9dddd51ee75f5b8047daf55146 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 9 Mar 2017 10:54:45 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- EInAPI.h | 1 + EMkMachMgr.h | 1 + EXeExecutor.h | 1 + 3 files changed, 3 insertions(+) diff --git a/EInAPI.h b/EInAPI.h index bccb95e..373f53e 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -713,6 +713,7 @@ EIN_EXPORT int __stdcall EgtGetAxisId( const wchar_t* wsAxis) ; EIN_EXPORT int __stdcall EgtGetHeadId( const wchar_t* wsHead) ; EIN_EXPORT int __stdcall EgtGetHeadExitCount( const wchar_t* wsHead) ; EIN_EXPORT BOOL __stdcall EgtGetAllHeadsNames( wchar_t*& wsNames) ; +EIN_EXPORT BOOL __stdcall EgtGetAllTablesNames( wchar_t*& wsNames) ; // Machine Calc EIN_EXPORT BOOL __stdcall EgtSetCalcTool( const wchar_t* wsTool, const wchar_t* wsHead, int nExit) ; EIN_EXPORT BOOL __stdcall EgtGetCalcTipFromPositions( double dX, double dY, double dZ, double dAngA, double dAngB, diff --git a/EMkMachMgr.h b/EMkMachMgr.h index af4edb7..2cc4fa1 100644 --- a/EMkMachMgr.h +++ b/EMkMachMgr.h @@ -252,6 +252,7 @@ class __declspec( novtable) IMachMgr virtual bool ResetAxisPos( const std::string& sAxis) = 0 ; virtual bool ResetAllAxesPos( void) = 0 ; virtual bool GetAllHeadsNames( STRVECTOR& vNames) const = 0 ; + virtual bool GetAllTablesNames( STRVECTOR& vNames) const = 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) const = 0 ; virtual bool UnloadTool( const std::string& sHead, int nExit) = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 7ee36cf..be102f2 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -767,6 +767,7 @@ EXE_EXPORT int ExeGetHeadId( const std::string& sHead) ; EXE_EXPORT int ExeGetHeadExitCount( const std::string& sHead) ; EXE_EXPORT bool ExeGetAxisToken( const std::string& sAxis, std::string& sToken) ; EXE_EXPORT bool ExeGetAllHeadsNames( STRVECTOR& vNames) ; +EXE_EXPORT bool ExeGetAllTablesNames( STRVECTOR& vNames) ; // Machine Calc EXE_EXPORT bool ExeSetCalcTable( const std::string& sTable) ; EXE_EXPORT bool ExeSetCalcTool( const std::string& sTool, const std::string& sHead, int nExit) ;