EgtExecutor 1.6g3 :

- correzione controlli in ExeCreateGeoFrame
- ExeInitGeomDB rinominata ExeInitContext
- aggiunta ExeDeleteContext
- migliorato log di ExeExit
- aggiunta possibilità di leggere e scrivere variabili LUA_Base.cpp
- aggiunta possibilità di chiamare funzioni Lua.
This commit is contained in:
Dario Sassi
2015-07-14 15:48:55 +00:00
parent d070901ce0
commit c5fdfea88c
27 changed files with 673 additions and 524 deletions
+8
View File
@@ -112,9 +112,17 @@ ExeInit( int nDebug, const string& sLogFile, const string& sLogMsg)
bool
ExeExit( void)
{
// recupero vettore dei contesti attivi
INTVECTOR vOn ;
GetAllGseContextOn( vOn) ;
// cancello tutti i contesti
ClearAllGseContexts() ;
// log dei contesti cancellati
string sTmp = "All Contexts deleted (" + ToString( vOn) + ")" ;
LOG_INFO( s_pGenLog, sTmp.c_str())
// termino l'interprete LUA
LuaExit() ;