Include :

- aggiornamento prototipi.
This commit is contained in:
Dario Sassi
2020-03-07 09:01:37 +00:00
parent e4d379d99e
commit 2ebad3f419
3 changed files with 27 additions and 0 deletions
+9
View File
@@ -813,10 +813,19 @@ EXE_EXPORT bool ExeTdbSetCurrToolParam( int nType, bool bVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolParam( int nType, int nVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolParam( int nType, double dVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolParam( int nType, const std::string& sVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolValInNotes( int nType, const std::string& sKey, bool bVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolValInNotes( int nType, const std::string& sKey, int nVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolValInNotes( int nType, const std::string& sKey, double dVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolValInNotes( int nType, const std::string& sKey, const std::string& sVal) ;
EXE_EXPORT bool ExeTdbRemoveCurrToolValInNotes( int nType, const std::string& sKey) ;
EXE_EXPORT bool ExeTdbGetCurrToolParam( int nType, bool& nVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolParam( int nType, int& nVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolParam( int nType, double& dVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolParam( int nType, std::string& sVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolValInNotes( int nType, const std::string& sKey, bool& bVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolValInNotes( int nType, const std::string& sKey, int& nVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolValInNotes( int nType, const std::string& sKey, double& dVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolValInNotes( int nType, const std::string& sKey, std::string& sVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolMaxDepth( double& dMaxDepth) ;
EXE_EXPORT bool ExeTdbGetCurrToolThDiam( double& dThDiam) ;
EXE_EXPORT int ExeTdbCurrToolDraw( int nGenCtx, int nToolCtx) ;