Include :

- aggiornamento prototipi.
This commit is contained in:
Dario Sassi
2017-10-24 18:20:51 +00:00
parent 822eb81467
commit 33345e3834
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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 ;
+2 -2
View File
@@ -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) ;