From 47330406139a4c3f0237e203e5abc60e43bfe52f Mon Sep 17 00:00:00 2001 From: DarioS Date: Mon, 20 Dec 2021 18:58:25 +0100 Subject: [PATCH] Include : - aggiornamento prototipi. --- EXeExecutor.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/EXeExecutor.h b/EXeExecutor.h index 57bd822..9c56678 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -437,6 +437,9 @@ EXE_EXPORT bool ExeSetInfo( int nId, const std::string& sKey, const Vector3d& vt EXE_EXPORT bool ExeSetInfo( int nId, const std::string& sKey, const Point3d& ptP) ; EXE_EXPORT bool ExeSetInfo( int nId, const std::string& sKey, const BBox3d& b3Box) ; EXE_EXPORT bool ExeSetInfo( int nId, const std::string& sKey, const Frame3d& frFrame) ; +EXE_EXPORT bool ExeSetInfo( int nId, const std::string& sKey, const INTVECTOR& vnInfo) ; +EXE_EXPORT bool ExeSetInfo( int nId, const std::string& sKey, const DBLVECTOR& vdInfo) ; +EXE_EXPORT bool ExeSetInfo( int nId, const std::string& sKey, const STRVECTOR& vsInfo) ; EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, bool& bInfo) ; EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, int& nInfo) ; EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, double& dInfo) ; @@ -445,6 +448,9 @@ EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, Vector3d& vtV) ; EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, Point3d& ptP) ; EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, BBox3d& b3Box) ; EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, Frame3d& frFrame) ; +EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, INTVECTOR& vnInfo) ; +EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, DBLVECTOR& vdInfo) ; +EXE_EXPORT bool ExeGetInfo( int nId, const std::string& sKey, STRVECTOR& vsInfo) ; EXE_EXPORT bool ExeExistsInfo( int nId, const std::string& sKey) ; EXE_EXPORT bool ExeRemoveInfo( int nId, const std::string& sKey) ; EXE_EXPORT bool ExeSetTextureName( int nId, const std::string& sTxrName) ;