From cb6a4a4bd9fd7323c2c5bbc9027067c53c36e66c Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Sat, 23 Jun 2018 11:19:34 +0000 Subject: [PATCH] EgtExecutor : - aggiunta ExeGetIniFile per interfaccia. --- EXE_General.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/EXE_General.cpp b/EXE_General.cpp index bf48363..11a27e2 100644 --- a/EXE_General.cpp +++ b/EXE_General.cpp @@ -227,6 +227,17 @@ ExeSetIniFile( const string& sIniFile) return true ; } +//----------------------------------------------------------------------------- +bool +ExeGetIniFile( string& sIniFile) +{ + if ( &sIniFile == nullptr) + return false ; + // recupero il nome del font di default + sIniFile = s_sIniFile ; + return true ; +} + //----------------------------------------------------------------------------- bool ExeSetCommandLogger( const string& sLogFile)